Java Doc for TreeObject.java in  » IDE-Netbeans » xml » org » netbeans » tax » 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 » xml » org.netbeans.tax 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.netbeans.tax.TreeObject

All known Subclasses:   org.netbeans.tax.TreeObjectList,  org.netbeans.tax.TreeNode,
TreeObject
abstract public class TreeObject implements TreeEventModel(Code)
Tree objects base class with support for firing events and merging.

It also prescribes that each subclass MUST have copy constuctor calling its superclass copy constructor. The copy constructor MUST be then called during cloning.

All TreeObject subclasses should not have public contructors and therefore should be created just by factory methods.

Pending: validation on request, invalidation
author:
   Libor Kramolis
author:
   Petr Kuzel
version:
   0.1



Field Summary
final public static  StringPROP_READ_ONLY
    

Constructor Summary
protected  TreeObject()
     Creates new TreeObject.
protected  TreeObject(TreeObject object)
     Creates new TreeObject - copy constructor.

Method Summary
final public  voidaddPropertyChangeListener(PropertyChangeListener listener)
     Add a PropertyChangeListener to the listener list.
final public  voidaddPropertyChangeListener(String propertyName, PropertyChangeListener listener)
     Add a PropertyChangeListener for a specific property to the listener list.
final public  voidaddReadonlyChangeListener(PropertyChangeListener listener)
    
final protected  voidbubblePropertyChange(TreeEvent origEvt)
     Propagate event to parents' listeners.
final protected  voidcheckMergeObject(TreeObject treeObject)
    
final protected  voidcheckReadOnly()
    
abstract public  Objectclone()
    
public  booleanequals(Object object)
    
public  booleanequals(Object object, boolean deep)
    
final protected  voidfirePropertyChange(TreeEvent evt)
     Fire an existing TreeEvent to any registered listeners.
final protected  voidfirePropertyChange(String propertyName, Object oldValue, Object newValue)
     Report a bound property update to any registered listeners.
final protected  TreeEventChangeSupportgetEventChangeSupport()
    
abstract public  TreeEventManagergetEventManager()
     Get assigned event manager. Whole document should have only one and same EventManager.
final public  booleanhasPropertyChangeListeners(String propertyName)
     Check if there are any listeners for a specific property.
Parameters:
  propertyName - the property name.
abstract public  booleanisInContext()
    
final protected  booleanisInstance(Object object)
    
final public  booleanisReadOnly()
    
final public  StringlistListeners()
     For debugging purposes.
public  voidmerge(TreeObject treeObject)
    

Update algorithm pattern that reuses original tree instances:

 // 1.
abstract public  voidremoveFromContext()
    
final public  voidremovePropertyChangeListener(PropertyChangeListener listener)
     Removes a PropertyChangeListener from the listener list.
final public  voidremovePropertyChangeListener(String propertyName, PropertyChangeListener listener)
     Removes a PropertyChangeListener for a specific property from the listener list.
final public  voidremoveReadonlyChangeListener(PropertyChangeListener listener)
    
protected  voidsetReadOnly(boolean newReadOnly)
    

Field Detail
PROP_READ_ONLY
final public static String PROP_READ_ONLY(Code)




Constructor Detail
TreeObject
protected TreeObject()(Code)
Creates new TreeObject.



TreeObject
protected TreeObject(TreeObject object)(Code)
Creates new TreeObject - copy constructor. (it does not copy eventChangeSupport)




Method Detail
addPropertyChangeListener
final public void addPropertyChangeListener(PropertyChangeListener listener)(Code)
Add a PropertyChangeListener to the listener list.
Parameters:
  listener - The listener to add.



addPropertyChangeListener
final public void addPropertyChangeListener(String propertyName, PropertyChangeListener listener)(Code)
Add a PropertyChangeListener for a specific property to the listener list.
Parameters:
  propertyname - Name of the property to listen on.
Parameters:
  listener - The listener to add.



addReadonlyChangeListener
final public void addReadonlyChangeListener(PropertyChangeListener listener)(Code)



bubblePropertyChange
final protected void bubblePropertyChange(TreeEvent origEvt)(Code)
Propagate event to parents' listeners.



checkMergeObject
final protected void checkMergeObject(TreeObject treeObject) throws CannotMergeException(Code)



checkReadOnly
final protected void checkReadOnly() throws ReadOnlyException(Code)



clone
abstract public Object clone()(Code)
Cloning must use copy constructors!



equals
public boolean equals(Object object)(Code)



equals
public boolean equals(Object object, boolean deep)(Code)



firePropertyChange
final protected void firePropertyChange(TreeEvent evt)(Code)
Fire an existing TreeEvent to any registered listeners. No event is fired if the given event's old and new values are equal and non-null.
Parameters:
  evt - The TreeEvent object.



firePropertyChange
final protected void firePropertyChange(String propertyName, Object oldValue, Object newValue)(Code)
Report a bound property update to any registered listeners. No event is fired if old and new are equal and non-null.
Parameters:
  propertyName - The programmatic name of the property that was changed.
Parameters:
  oldValue - The old value of the property.
Parameters:
  newValue - The new value of the property.



getEventChangeSupport
final protected TreeEventChangeSupport getEventChangeSupport()(Code)
support that delegates to TreeEventManager



getEventManager
abstract public TreeEventManager getEventManager()(Code)
Get assigned event manager. Whole document should have only one and same EventManager. When there is not available manager, it returns null. assigned event manager (may be null).



hasPropertyChangeListeners
final public boolean hasPropertyChangeListeners(String propertyName)(Code)
Check if there are any listeners for a specific property.
Parameters:
  propertyName - the property name. true if there are ore or more listeners for the given property



isInContext
abstract public boolean isInContext()(Code)



isInstance
final protected boolean isInstance(Object object)(Code)



isReadOnly
final public boolean isReadOnly()(Code)



listListeners
final public String listListeners()(Code)
For debugging purposes.



merge
public void merge(TreeObject treeObject) throws CannotMergeException(Code)

Update algorithm pattern that reuses original tree instances:

 // 1. optimalization
 if (this == treeObject) return;
 // 2. can merge just my instances (so no cross implemetation merge allowed)
 if (getClass().isAssignablFrom(treeObject.getClass())) throw CannotMergeException;
 // 3. let superclass do its merge
 super.merge(treeObject);
 // 4. cast to myself (see step 2)
 {getClass()} peer = ({getClass()}) treeObject;
 // 5. merge all fields at THIS CLASS HIEARCHY LEVEL but
 // fields that references object "parents"
 // use setters that just fires property changes, i.e. such that never fails
 // due to read-only or other constrains checks
 foreach field in suitableClassFields
 if field is simple
 set{field}Impl( peer.get{field}() )
 if field is collection or TreeObject
 {field}.merge(peer.{field})
 next field
 

Parameters:
  treeobject - merge peer
throws:
  CannotMergeException - if can not merge with given node (invalid class)



removeFromContext
abstract public void removeFromContext() throws ReadOnlyException(Code)



removePropertyChangeListener
final public void removePropertyChangeListener(PropertyChangeListener listener)(Code)
Removes a PropertyChangeListener from the listener list.
Parameters:
  listener - The listener to remove.



removePropertyChangeListener
final public void removePropertyChangeListener(String propertyName, PropertyChangeListener listener)(Code)
Removes a PropertyChangeListener for a specific property from the listener list.
Parameters:
  propertyname - Name of the property that was listened on.
Parameters:
  listener - The listener to remove.



removeReadonlyChangeListener
final public void removeReadonlyChangeListener(PropertyChangeListener listener)(Code)



setReadOnly
protected void setReadOnly(boolean newReadOnly)(Code)



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.