java.lang.Object
org.jline.prompt.impl.DefaultListItem
- All Implemented Interfaces:
ListItem,PromptItem
Default implementation of ListItem interface.
-
Constructor Summary
ConstructorsConstructorDescriptionDefaultListItem(String name, String text) DefaultListItem(String name, String text, boolean disabled, String disabledText) DefaultListItem(String name, String text, boolean disabled, String disabledText, String footer) -
Method Summary
Modifier and TypeMethodDescriptionGet the text to display when this item is disabled.Optional footer text shown dimmed below a list or checkbox while this item is focused.getName()Get the name of this item.getText()Get the text to display for this item.booleanWhether this item is disabled.toString()Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface org.jline.prompt.PromptItem
isSelectable
-
Constructor Details
-
DefaultListItem
-
DefaultListItem
-
DefaultListItem
-
-
Method Details
-
getName
Description copied from interface:PromptItemGet the name of this item.- Specified by:
getNamein interfacePromptItem- Returns:
- the name
-
getText
Description copied from interface:PromptItemGet the text to display for this item.- Specified by:
getTextin interfacePromptItem- Returns:
- the text
-
isDisabled
public boolean isDisabled()Description copied from interface:PromptItemWhether this item is disabled.- Specified by:
isDisabledin interfacePromptItem- Returns:
- true if this item is disabled
-
getDisabledText
Description copied from interface:PromptItemGet the text to display when this item is disabled.- Specified by:
getDisabledTextin interfacePromptItem- Returns:
- the disabled text
-
toString
-