Interface IGUITextHandler
-
- All Known Implementing Classes:
IntegerTextHandler,StringCollectionHandler
public interface IGUITextHandlerInterface for a GUITextHandler. Handles Texts and creates formats for the Editor.- Author:
- Dennis Konoppa
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Stringformat(java.lang.String text)Method to create the format for a text.java.util.List<java.lang.Object>split(java.lang.String format)Method to generate List of Objects from a given format.
-
-
-
Method Detail
-
format
java.lang.String format(java.lang.String text)
Method to create the format for a text.- Parameters:
text- the text- Returns:
- formats which is fitting for the text
-
split
java.util.List<java.lang.Object> split(java.lang.String format)
Method to generate List of Objects from a given format.- Parameters:
format- the format which contains values of the Machine- Returns:
- List of Objects which contains valid values for the Machine
-
-