Package main.java

Class A

java.lang.Object
main.java.A
Direct Known Subclasses:
B

public abstract class A extends Object
A is an abstract class that works as an example for the project
  • Constructor Details

    • A

      public A()
      Basic constructor
      Since:
      1.0
    • A

      public A(int intValue, String stringValue)

      Populated constructor

      Parameters:
      intValue - the int value to store
      stringValue - the String value to store
      Since:
      1.0
  • Method Details

    • getIntValue

      public int getIntValue()

      This is a the description of getIntValue

      Returns:
      the int stored in intValue
      Since:
      1.0
      See Also:
    • setIntValue

      public void setIntValue(int intValue)

      This is a simple description of setIntValue

      Parameters:
      intValue - the int value to be stored on the private var
      Since:
      1.0
    • getStringValue

      public String getStringValue()

      This is a the description of getStringValue

      Returns:
      the String stored in stringValue
      Since:
      1.0
      See Also:
    • setStringValue

      public void setStringValue(String stringValue)

      This is a simple description of setStringValue

      Parameters:
      stringValue - the String value to be stored on the private var
      Since:
      1.0