Package org.netxms.client.objecttools
Interface ObjectAction
-
- All Known Implementing Classes:
GraphSettings,ObjectTool,ObjectToolDetails
public interface ObjectActionGeneric interface for user-defined object actions (object tools, graph templates, etc.)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ObjectMenuFiltergetMenuFilter()Get menu filter associated with the toolintgetToolType()Get tool typebooleanisApplicableForNode(AbstractNode node)Check if this action is applicable to given nodevoidsetMenuFilter(ObjectMenuFilter filter)Sets menu filter for the tool
-
-
-
Method Detail
-
getMenuFilter
ObjectMenuFilter getMenuFilter()
Get menu filter associated with the tool
-
setMenuFilter
void setMenuFilter(ObjectMenuFilter filter)
Sets menu filter for the tool
-
getToolType
int getToolType()
Get tool type
-
isApplicableForNode
boolean isApplicableForNode(AbstractNode node)
Check if this action is applicable to given node- Parameters:
node- node object- Returns:
- true if applicable
-
-