| |
|
| org.netbeans.modules.sql.framework.ui.graph.IGraphNode
All known Subclasses: org.netbeans.modules.sql.framework.ui.graph.impl.BasicCanvasArea, org.netbeans.modules.sql.framework.ui.view.graph.SQLBasicTableArea,
IGraphNode | public interface IGraphNode extends IDataNode(Code) | | author: radval |
addChildObject | public void addChildObject(Object obj)(Code) | | add child data object
Parameters: obj - child data object |
expand | public void expand(boolean expand)(Code) | | Expand this graph node
Parameters: expand - whether to expand or collapse this node |
getAllLinks | List getAllLinks()(Code) | | get a list of all input and output links
list of input links |
getChildNode | public IGraphNode getChildNode(Object obj)(Code) | | get the child graphNode
Parameters: obj - child data object graph node |
getFieldName | String getFieldName(IGraphPort graphPort)(Code) | | get field name given a port
Parameters: graphPort - graph port field name |
getGraphView | public IGraphView getGraphView()(Code) | | get the graphview which holds this view
graph view |
getInputGraphPort | IGraphPort getInputGraphPort(String fieldName)(Code) | | get input graph port , given a field name
Parameters: fieldName - field name graph port |
getOutputGraphPort | IGraphPort getOutputGraphPort(String fieldName)(Code) | | get output graph port , given a field name
Parameters: fieldName - field name graph port |
getParentGraphNode | public IGraphNode getParentGraphNode()(Code) | | Get the parent node
parent |
initializeActions | public void initializeActions(List actions)(Code) | | set the actions on a node
Parameters: actions - |
isDeleteAllowed | public boolean isDeleteAllowed()(Code) | | is this node can be deleted
true if node can be deleted |
isExpandedState | public boolean isExpandedState()(Code) | | get the expanded state
expanded state |
removeChildNode | public void removeChildNode(IGraphNode childNode) throws Exception(Code) | | Remove a child object
Parameters: child - child object |
removeChildObject | public void removeChildObject(Object obj)(Code) | | remove the child data object
Parameters: obj - child data object |
setExpandedState | public void setExpandedState(boolean expand)(Code) | | set the expansion state of the graph node
Parameters: expand - expansion state |
setGraphView | public void setGraphView(IGraphView view)(Code) | | set the graph view whixh hold this node
Parameters: view - graph view |
updateUI | public void updateUI()(Code) | | update this node with changes in data object
|
|
|
|