Java Doc for UMLLeaf.java in  » UML » jrefactory » org » acm » seguin » ide » elixir » 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 » UML » jrefactory » org.acm.seguin.ide.elixir 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.acm.seguin.ide.elixir.UMLLeaf

UMLLeaf
class UMLLeaf implements TNode(Code)
Stores a leaf node for a UML class diagram
author:
   Chris Seguin



Constructor Summary
public  UMLLeaf(TNode parent, File file, UMLDocManager docManager)
    

Method Summary
public  Enumerationchildren()
    
public  voiddoDoubleClick()
     Perform double-click action.
public  voidfireChanged()
    
public  booleangetAllowsChildren()
    
public  TreeNodegetChildAt(int idx)
    
public  intgetChildCount()
    
public  StringgetFullName()
     Get the full name of the node, usually composed by walking the TreePath a/b/c etc.
public  IcongetIcon(boolean expanded)
    
public  intgetIndex(TreeNode child)
     Return the index of a child.
public  StringgetName()
    
public  TreeNodegetParent()
    
public  JPopupMenugetPopupMenu()
    
public  StringgetToolTipText()
     Return the tooltip help to be shown when the mouse is over this node.
public  TModelgetTreeModel()
    
public  TreePathgetTreePath()
    
public  booleanisLeaf()
    
public  voidsetName(String name)
     Sets a new name for the node.
public  voidsetParent(TParent value)
     Sets a new parent for the node.
public  voidsortChildren(SortUtil.Comparator c)
     Sort the children of this node based on the comparator.
public  StringtoString()
    


Constructor Detail
UMLLeaf
public UMLLeaf(TNode parent, File file, UMLDocManager docManager)(Code)
Constructor for the UMLLeaf object
Parameters:
  parent - the parent file
Parameters:
  file - the file
Parameters:
  docManager - the document manager




Method Detail
children
public Enumeration children()(Code)
Gets an enumeration of the children An empty enumeration



doDoubleClick
public void doDoubleClick()(Code)
Perform double-click action. Hopefully this will open the file.



fireChanged
public void fireChanged()(Code)
Notify the TreeModel and hence the TreeModel listeners that this node has changed



getAllowsChildren
public boolean getAllowsChildren()(Code)
Can we add children to this The AllowsChildren value



getChildAt
public TreeNode getChildAt(int idx)(Code)
Return the child from an index
Parameters:
  idx - Description of Parameter The ChildAt value



getChildCount
public int getChildCount()(Code)
Count the children The ChildCount value



getFullName
public String getFullName()(Code)
Get the full name of the node, usually composed by walking the TreePath a/b/c etc. The FullName value



getIcon
public Icon getIcon(boolean expanded)(Code)
Get the icon to show in the tree
Parameters:
  expanded - Description of Parameter The Icon value



getIndex
public int getIndex(TreeNode child)(Code)
Return the index of a child. This has no children so always returns -1.
Parameters:
  child - Description of Parameter The Index value



getName
public String getName()(Code)
Get the name to show in the tree The Name value



getParent
public TreeNode getParent()(Code)
Gets the Parent attribute of the UMLLeaf object The Parent value



getPopupMenu
public JPopupMenu getPopupMenu()(Code)
Get the popup menu to show for this node The PopupMenu value



getToolTipText
public String getToolTipText()(Code)
Return the tooltip help to be shown when the mouse is over this node. The ToolTipText value



getTreeModel
public TModel getTreeModel()(Code)
Return the model which this node belongs to The TreeModel value



getTreePath
public TreePath getTreePath()(Code)
Get the TreePath which represents this node The TreePath value



isLeaf
public boolean isLeaf()(Code)
Gets the Leaf attribute of the UMLLeaf object The Leaf value



setName
public void setName(String name)(Code)
Sets a new name for the node.
Parameters:
  name - The new Name value



setParent
public void setParent(TParent value)(Code)
Sets a new parent for the node.
Parameters:
  value - The new Parent value



sortChildren
public void sortChildren(SortUtil.Comparator c)(Code)
Sort the children of this node based on the comparator. Since there are no children, this does nothing.
Parameters:
  c - the comparator



toString
public String toString()(Code)
Return the name of the node as its String representation Gets the string representation of this node



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.