Java Doc for EditorPageManager.java in  » GIS » udig-1.1 » net » refractions » udig » style » sld » editor » 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 » GIS » udig 1.1 » net.refractions.udig.style.sld.editor 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   net.refractions.udig.style.sld.editor.EditorPageManager

EditorPageManager
public class EditorPageManager implements IExtensionChangeHandler(Code)


Field Summary
final public static  StringATT_CLASS
    
final public static  StringATT_ID
    
final public static  StringATT_LABEL
    
final public static  StringATT_NAME
    
final public static  StringPL_KEYWORDS
    
final public static  intPOST_ORDER
     Post-order means visit the children, and then the root.
final public static  intPRE_ORDER
     Pre-order traversal means visit the root first, then the children.
 EditorNoderoot
     The root node.
 Stringseparator
     The path separator character.

Constructor Summary
public  EditorPageManager()
     Creates a new preference manager.
public  EditorPageManager(char separatorChar)
    

Method Summary
public  voidaddExtension(IExtensionTracker tracker, IExtension extension)
    
public  voidaddPages(Collection pageContributions)
     Add the pages and the groups to the receiver.
public  booleanaddTo(String path, EditorNode node)
     Adds the given preference node as a subnode of the node at the given path.
public  voidaddToRoot(EditorNode node)
     Adds the given preference node as a subnode of the root.
protected  voidbuildSequence(EditorNode node, List<EditorNode> sequence, int order)
     Recursively enumerates all nodes at or below the given node and adds them to the given list in the given order.
public  EditorNodefind(String path)
     Finds and returns the contribution node at the given path.
protected  EditorNodefind(String path, EditorNode top)
     Finds and returns the preference node directly below the top at the given path.
public  StringgetClassValue(IConfigurationElement configElement, String classAttributeName)
    
public  ListgetElements(int order)
     Returns all preference nodes managed by this manager.
public  EditorNodegetRoot()
     Returns the root node.
public  EditorNode[]getRootSubNodes()
    
public  booleanhasNode(String nodeId)
     Returns true if the specified node exists in the manager.
public  voidregisterNode(EditorNode node)
     Register a node with the extension tracker.
public  EditorNoderemove(String path)
     Removes the prefernece node at the given path.
public  booleanremove(EditorNode node)
     Removes the given prefreence node if it is managed by this contribution manager.
public  voidremoveAll()
     Removes all contribution nodes known to this manager.
public  voidremoveExtension(IExtension extension, Object[] objects)
    

Field Detail
ATT_CLASS
final public static String ATT_CLASS(Code)



ATT_ID
final public static String ATT_ID(Code)



ATT_LABEL
final public static String ATT_LABEL(Code)



ATT_NAME
final public static String ATT_NAME(Code)



PL_KEYWORDS
final public static String PL_KEYWORDS(Code)



POST_ORDER
final public static int POST_ORDER(Code)
Post-order means visit the children, and then the root.



PRE_ORDER
final public static int PRE_ORDER(Code)
Pre-order traversal means visit the root first, then the children.



root
EditorNode root(Code)
The root node. Note that the root node is a special internal node that is used to collect together all the nodes that have no parent; it is not given out to clients.



separator
String separator(Code)
The path separator character.




Constructor Detail
EditorPageManager
public EditorPageManager()(Code)
Creates a new preference manager.



EditorPageManager
public EditorPageManager(char separatorChar)(Code)
Create a new instance of the receiver with the specified seperatorChar
Parameters:
  separatorChar -




Method Detail
addExtension
public void addExtension(IExtensionTracker tracker, IExtension extension)(Code)



addPages
public void addPages(Collection pageContributions)(Code)
Add the pages and the groups to the receiver.
Parameters:
  pageContributions -



addTo
public boolean addTo(String path, EditorNode node)(Code)
Adds the given preference node as a subnode of the node at the given path.
Parameters:
  path - the path
Parameters:
  node - the node to add true if the add was successful,and false if there is no contribution atthe given path



addToRoot
public void addToRoot(EditorNode node)(Code)
Adds the given preference node as a subnode of the root.
Parameters:
  node - the node to add, which must implement SLDEditorPageNode



buildSequence
protected void buildSequence(EditorNode node, List<EditorNode> sequence, int order)(Code)
Recursively enumerates all nodes at or below the given node and adds them to the given list in the given order.
Parameters:
  node - the starting node
Parameters:
  sequence - a read-write list of preference nodes(element type: SLDEditorPageNode)in the given order
Parameters:
  order - the traversal order, one of PRE_ORDER and POST_ORDER



find
public EditorNode find(String path)(Code)
Finds and returns the contribution node at the given path.
Parameters:
  path - the path the node, or null if none



find
protected EditorNode find(String path, EditorNode top)(Code)
Finds and returns the preference node directly below the top at the given path.
Parameters:
  path - the path the node, or null if none
since:
   3.1



getClassValue
public String getClassValue(IConfigurationElement configElement, String classAttributeName)(Code)



getElements
public List getElements(int order)(Code)
Returns all preference nodes managed by this manager.
Parameters:
  order - the traversal order, one of PRE_ORDER and POST_ORDER a list of preference nodes(element type: SLDEditorPageNode)in the given order



getRoot
public EditorNode getRoot()(Code)
Returns the root node. Note that the root node is a special internal node that is used to collect together all the nodes that have no parent; it is not given out to clients. the root node



getRootSubNodes
public EditorNode[] getRootSubNodes()(Code)



hasNode
public boolean hasNode(String nodeId)(Code)
Returns true if the specified node exists in the manager.
Parameters:
  nodeId - Unique identified for a node boolean



registerNode
public void registerNode(EditorNode node)(Code)
Register a node with the extension tracker.
Parameters:
  node - register the given node and its subnodes with the extensiontracker



remove
public EditorNode remove(String path)(Code)
Removes the prefernece node at the given path.
Parameters:
  path - the path the node that was removed, or nullif there was no node at the given path



remove
public boolean remove(EditorNode node)(Code)
Removes the given prefreence node if it is managed by this contribution manager.
Parameters:
  node - the node to remove true if the node was removed,and false otherwise



removeAll
public void removeAll()(Code)
Removes all contribution nodes known to this manager.



removeExtension
public void removeExtension(IExtension extension, Object[] objects)(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.