Package editor
Interface IIntelliTextModel
-
- All Known Implementing Classes:
PopupListModel
public interface IIntelliTextModel
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDisplayText(Object element)Returns the display name for the element.IIntelliTextModelgetFilteredModel(String strPrefix)StringgetFilterPrefix()StringgetInsertionTextFrom(Object element)Returns a string to insert into a text editor that is representative of the given element in the model.StringgetTypeName()Returns a displayable string for the type of elements in the model.ObjectparseElement(String strValue)Returns the element in the model corresponding with the string value.
-
-
-
Method Detail
-
getInsertionTextFrom
String getInsertionTextFrom(Object element)
Returns a string to insert into a text editor that is representative of the given element in the model.
-
getTypeName
String getTypeName()
Returns a displayable string for the type of elements in the model. e.g., "ActivityPattern", "LossCause", "DateTime", anything.
-
parseElement
Object parseElement(String strValue)
Returns the element in the model corresponding with the string value. Returns null if there is no corresponding element.
-
getFilterPrefix
String getFilterPrefix()
-
getFilteredModel
IIntelliTextModel getFilteredModel(String strPrefix)
-
-