Class IntHolder


  • public class IntHolder
    extends java.lang.Object
    This class implements a simple object storing a int value in order to use the reference of this object, which will be shared between multiple class
    Author:
    JC Meillaud, A Peyrard
    • Constructor Summary

      Constructors 
      Constructor Description
      IntHolder()  
      IntHolder​(int value)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      int getIntValue()  
      void setIntValue​(int intValue)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • IntHolder

        public IntHolder()
      • IntHolder

        public IntHolder​(int value)
    • Method Detail

      • getIntValue

        public int getIntValue()
        Returns:
        Returns the intValue.
      • setIntValue

        public void setIntValue​(int intValue)
        Parameters:
        intValue - The intValue to set.