Package main.java
Class A
java.lang.Object
main.java.A
- Direct Known Subclasses:
B
A is an abstract class that works as an example for the project
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionint
This is a the description of getIntValueThis is a the description of getStringValuevoid
setIntValue
(int intValue) This is a simple description of setIntValuevoid
setStringValue
(String stringValue) This is a simple description of setStringValue
-
Constructor Details
-
A
public A()Basic constructor- Since:
- 1.0
-
A
Populated constructor
- Parameters:
intValue
- the int value to storestringValue
- 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
This is a the description of getStringValue
- Returns:
- the String stored in stringValue
- Since:
- 1.0
- See Also:
-
setStringValue
This is a simple description of setStringValue
- Parameters:
stringValue
- the String value to be stored on the private var- Since:
- 1.0
-