| Design af klassehierarkier - slide 19 : 26 |
|
interface StringInput {
/** Re-initializes the current object from the string s */
void fromStringRepresentation(String s);
}
|
interface StringOutput {
/** Return a string representation of the current object */
String toStringRepresentation ();
}
|
interface StringInputOutput extends StringInput, StringOutput {
}
|