Interface Actions.SubMenuModel
- Enclosing class:
Actions
Deprecated.
Interface for the creating Actions.SubMenu. It provides the methods for
all items in submenu: name shortcut and perform method. Also has methods
for notification of changes of the model.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Deprecated.Adds change listener for changes of the model.int
getCount()
Deprecated.org.openide.util.HelpCtx
getHelpCtx
(int index) Deprecated.Get context help for the specified item.getLabel
(int index) Deprecated.Gets label for specific indexvoid
performActionAt
(int index) Deprecated.Perform the action on the specific indexvoid
Deprecated.Removes change listener for changes of the model.
-
Method Details
-
getCount
int getCount()Deprecated.- Returns:
- count of the submenu items.
-
getLabel
Deprecated.Gets label for specific index- Parameters:
index
- of the submenu item- Returns:
- label for this menu item (or
null
for a separator)
-
getHelpCtx
org.openide.util.HelpCtx getHelpCtx(int index) Deprecated.Get context help for the specified item. This can be used to associate help with individual items. You may returnnull
to just use the context help for the associated system action (if any). Note that only help IDs will work, not URLs.- Returns:
- the context help, or
null
-
performActionAt
void performActionAt(int index) Deprecated.Perform the action on the specific index- Parameters:
index
- of the submenu item which should be performed
-
addChangeListener
-
removeChangeListener
Deprecated.Removes change listener for changes of the model.
-
Actions.SubMenu