jeops.examples
Class StringTest
java.lang.Object
|
+--jeops.examples.StringTest
- public class StringTest
- extends java.lang.Object
Class used to test string manipulation in JEOPS. It's only a class that
wraps a String value.
- Version:
- 0.01 15 May 1998
- Author:
- Carlos Figueira Filho (csff@di.ufpe.br)
Field Summary |
java.lang.String |
value
The value of the wrapped String. |
Constructor Summary |
StringTest(java.lang.String val)
Class constructor. |
Method Summary |
java.lang.String |
getValue()
Returns the String value. |
void |
setValue(java.lang.String newValue)
Defines the String value. |
Methods inherited from class java.lang.Object |
equals,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait |
value
public java.lang.String value
- The value of the wrapped String.
StringTest
public StringTest(java.lang.String val)
- Class constructor.
- Parameters:
val
- the String value.
getValue
public java.lang.String getValue()
- Returns the String value.
- Returns:
- the String value.
setValue
public void setValue(java.lang.String newValue)
- Defines the String value.
- Parameters:
newValue
- the new value for the wrapped String.