Java Doc for IGraphView.java in  » IDE-Netbeans » etl.project » org » netbeans » modules » sql » framework » ui » graph » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » IDE Netbeans » etl.project » org.netbeans.modules.sql.framework.ui.graph 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.netbeans.modules.sql.framework.ui.graph.IGraphView

All known Subclasses:   org.netbeans.modules.sql.framework.ui.graph.impl.GraphView,
IGraphView
public interface IGraphView extends ICommand(Code)

author:
   radval




Method Summary
public  voidaddLink(IGraphPort from, IGraphPort to)
    
public  voidaddLink(IGraphLink link)
    
public  voidaddNode(IGraphNode node)
    
public  voidautoLayout()
    
public  booleancanEdit()
    
public  voidclearAll()
    
public  voidclearSelection()
    
public  voidcollapseAll()
    
public  voiddeleteLinks(Collection links)
    
public  voiddeleteNode(IGraphNode node)
    
public  voidexecute(String command, Object[] args)
    
public  voidexpandAll()
    
public  IGraphNodefindGraphNode(Object obj)
    
public  ActiongetAction(Class actionClass)
    
public  ListgetGraphActions()
    
public  IGraphControllergetGraphController()
    
public  ObjectgetGraphFactory()
    
public  ObjectgetGraphModel()
    
public  ObjectgetGraphViewContainer()
    
public  IToolBargetToolBar()
    
public  voidhighlightInvalidNode(Object dataObj, boolean createSel)
    
public  booleanisModifiable()
    
public  voidprintView()
    
public  voidremoveLink(IGraphPort from, IGraphPort to)
    
public  voidremoveNode(IGraphNode node)
    
public  voidresetSelectionColors()
    
public  voidsetGraphActions(List actions)
    
public  voidsetGraphController(IGraphController controller)
    
public  voidsetGraphFactory(Object gFactory)
    
public  voidsetGraphModel(Object model)
    
public  voidsetGraphViewContainer(Object mgr)
    
public  voidsetModifiable(boolean b)
    
public  voidsetToolBar(IToolBar toolBar)
    
public  voidsetXMLInfo(IOperatorXmlInfo xmlInfo)
    



Method Detail
addLink
public void addLink(IGraphPort from, IGraphPort to)(Code)
add a link
Parameters:
  from - IGraphPort
Parameters:
  to - IGraphPort



addLink
public void addLink(IGraphLink link)(Code)
add a graph link
Parameters:
  link - graph link



addNode
public void addNode(IGraphNode node)(Code)
add a IGraphNode
Parameters:
  node - IGraphNode



autoLayout
public void autoLayout()(Code)
autolayout all the graph objects



canEdit
public boolean canEdit()(Code)
can this graph be edited true if graph is edited



clearAll
public void clearAll()(Code)
remove all the view and document objects



clearSelection
public void clearSelection()(Code)



collapseAll
public void collapseAll()(Code)
collapse all the graph objects



deleteLinks
public void deleteLinks(Collection links)(Code)
delete a collection of links



deleteNode
public void deleteNode(IGraphNode node)(Code)
delete a graph node
Parameters:
  node - graph node



execute
public void execute(String command, Object[] args)(Code)
Execute a command
Parameters:
  command - - command
Parameters:
  args - - arguments



expandAll
public void expandAll()(Code)
Expand all the graph objects



findGraphNode
public IGraphNode findGraphNode(Object obj)(Code)



getAction
public Action getAction(Class actionClass)(Code)
get a action based on class name
Parameters:
  actionClass - action



getGraphActions
public List getGraphActions()(Code)
get the graph actions that need to be shown in popup menu a list of GraphAction, null in list represents a seperator



getGraphController
public IGraphController getGraphController()(Code)
get the graph controller of this view graph controller



getGraphFactory
public Object getGraphFactory()(Code)
get the graph factory graph factory



getGraphModel
public Object getGraphModel()(Code)
get graph model graph model



getGraphViewContainer
public Object getGraphViewContainer()(Code)
get graph view manager which can manage this view graph view manager



getToolBar
public IToolBar getToolBar()(Code)
get the toolbar toolbar



highlightInvalidNode
public void highlightInvalidNode(Object dataObj, boolean createSel)(Code)
Highlight invalid graph node
Parameters:
  dataObj - data object whose graph node needs to be highlighted
Parameters:
  createSel - if true will create a new selection otherwise add the graph nodeto existing selection



isModifiable
public boolean isModifiable()(Code)
check if this graph view is modifiable modifiable



printView
public void printView()(Code)
Print the view



removeLink
public void removeLink(IGraphPort from, IGraphPort to)(Code)
Remove a link
Parameters:
  from - IGraphPort
Parameters:
  to - IGraphPort



removeNode
public void removeNode(IGraphNode node)(Code)
Remove an IGraphNode
Parameters:
  node - IGraphNode



resetSelectionColors
public void resetSelectionColors()(Code)
Reset selection colors



setGraphActions
public void setGraphActions(List actions)(Code)
set graph actions on this view
Parameters:
  actions - list of GraphAction



setGraphController
public void setGraphController(IGraphController controller)(Code)
set the graph controller on this view
Parameters:
  controller - graph controller



setGraphFactory
public void setGraphFactory(Object gFactory)(Code)
set the graph factory which is used for creating nodes in this graph
Parameters:
  gFactory - graph node factory



setGraphModel
public void setGraphModel(Object model)(Code)
set the graph model
Parameters:
  model - graph model



setGraphViewContainer
public void setGraphViewContainer(Object mgr)(Code)
set the graph view manager which this view can refer to
Parameters:
  mgr - graph view manager



setModifiable
public void setModifiable(boolean b)(Code)
set this graph view modifiable
Parameters:
  b - modifiable



setToolBar
public void setToolBar(IToolBar toolBar)(Code)
set the toolbar
Parameters:
  toolBar -



setXMLInfo
public void setXMLInfo(IOperatorXmlInfo xmlInfo)(Code)



ww_w__.j_a_v___a__2__s__.c___o_m | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.