Java Doc for EditorNode.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.EditorNode

EditorNode
public class EditorNode implements IPluginContribution,IEditorNode(Code)
The EditorNode is the abstract class for all page nodes.


Field Summary
final public static  StringATT_CATEGORY
    
final public static  StringATT_CLASS
    
final public static  StringATT_ICON
    
final public static  StringATT_ID
    
final public static  StringATT_LABEL
    
final public static  StringATT_REQUIRES
    

Constructor Summary
public  EditorNode(String id, IConfigurationElement configurationElement)
     Create a new instance of the receiver.
public  EditorNode(String id)
     Creates a new preference node with the given id.
public  EditorNode(String id, String label, ImageDescriptor image, String className)
     Creates a preference node with the given id, label, and image, and lazily-loaded preference page.
public  EditorNode(String id, IEditorPage page)
     Creates an editor node with the given id and editor page.

Method Summary
public  voidadd(EditorNode node)
    
public  voidadd(IEditorNode node)
    
public  voidclearKeywords()
     Clear the keyword cache, if any.
public static  ObjectcreateExtension(IConfigurationElement element, String classAttribute)
     Creates an extension.
public  voidcreatePage(Composite parent, IEditorPageContainer container)
     Creates the page this node stands for.
public  voiddisposeResources()
    
public  EditorNodefindSubNode(String id)
    
public  StringgetCategory()
     Return the category name for the node.
public  IConfigurationElementgetConfigurationElement()
     Return the configuration element.
public  StringgetId()
    
public  ImageDescriptorgetImageDescriptor()
     Returns the image descriptor for this node.
public  CollectiongetKeywordLabels()
     Get the labels of all of the keywords of the receiver. Collection of String.
public  CollectiongetKeywordReferences()
     Get the ids of the keywords the receiver is bound to. Collection of String.
public  ImagegetLabelImage()
    
public  StringgetLabelText()
    
public  StringgetLocalId()
    
public  IEditorPagegetPage()
    
public  StringgetPluginId()
    
public  StringgetRequires()
     Return the required class the layer must resolve to.
public  EditorNode[]getSubNodes()
    
public  EditorNoderemove(String id)
    
public  booleanremove(EditorNode node)
    
public  booleanremove(IEditorNode node)
    
public  voidsetPage(IStyleEditorPage newPage)
     Set the current page to be newPage.

Field Detail
ATT_CATEGORY
final public static String ATT_CATEGORY(Code)



ATT_CLASS
final public static String ATT_CLASS(Code)



ATT_ICON
final public static String ATT_ICON(Code)



ATT_ID
final public static String ATT_ID(Code)



ATT_LABEL
final public static String ATT_LABEL(Code)



ATT_REQUIRES
final public static String ATT_REQUIRES(Code)




Constructor Detail
EditorNode
public EditorNode(String id, IConfigurationElement configurationElement)(Code)
Create a new instance of the receiver.
Parameters:
  id -
Parameters:
  configurationElement -



EditorNode
public EditorNode(String id)(Code)
Creates a new preference node with the given id. The new node has no subnodes.
Parameters:
  id - the node id



EditorNode
public EditorNode(String id, String label, ImageDescriptor image, String className)(Code)
Creates a preference node with the given id, label, and image, and lazily-loaded preference page. The preference node assumes (sole) responsibility for disposing of the image; this will happen when the node is disposed.
Parameters:
  id - the node id
Parameters:
  label - the label used to display the node in the preference dialog'stree
Parameters:
  image - the image displayed left of the label in the preferencedialog's tree, or null if none
Parameters:
  className - the class name of the preference page; this class mustimplement IPreferencePage



EditorNode
public EditorNode(String id, IEditorPage page)(Code)
Creates an editor node with the given id and editor page. The title of the editor page is used for the node label. The node will not have an image.
Parameters:
  id - the node id
Parameters:
  page - the editor page




Method Detail
add
public void add(EditorNode node)(Code)



add
public void add(IEditorNode node)(Code)



clearKeywords
public void clearKeywords()(Code)
Clear the keyword cache, if any.



createExtension
public static Object createExtension(IConfigurationElement element, String classAttribute) throws CoreException(Code)
Creates an extension. If the extension plugin has not been loaded a busy cursor will be activated during the duration of the load.
Parameters:
  element - the config element defining the extension
Parameters:
  classAttribute - the name of the attribute carrying the class the extension object
throws:
  CoreException - if the extension cannot be created



createPage
public void createPage(Composite parent, IEditorPageContainer container)(Code)
Creates the page this node stands for. The page is created, but its composite won't exist



disposeResources
public void disposeResources()(Code)



findSubNode
public EditorNode findSubNode(String id)(Code)



getCategory
public String getCategory()(Code)
Return the category name for the node. java.lang.String



getConfigurationElement
public IConfigurationElement getConfigurationElement()(Code)
Return the configuration element. the configuration element



getId
public String getId()(Code)



getImageDescriptor
public ImageDescriptor getImageDescriptor()(Code)
Returns the image descriptor for this node. the image descriptor



getKeywordLabels
public Collection getKeywordLabels()(Code)
Get the labels of all of the keywords of the receiver. Collection of String. Never null.



getKeywordReferences
public Collection getKeywordReferences()(Code)
Get the ids of the keywords the receiver is bound to. Collection of String. Never null.



getLabelImage
public Image getLabelImage()(Code)



getLabelText
public String getLabelText()(Code)



getLocalId
public String getLocalId()(Code)



getPage
public IEditorPage getPage()(Code)



getPluginId
public String getPluginId()(Code)



getRequires
public String getRequires()(Code)
Return the required class the layer must resolve to. java.lang.String (Class)



getSubNodes
public EditorNode[] getSubNodes()(Code)



remove
public EditorNode remove(String id)(Code)



remove
public boolean remove(EditorNode node)(Code)



remove
public boolean remove(IEditorNode node)(Code)



setPage
public void setPage(IStyleEditorPage newPage)(Code)
Set the current page to be newPage.
Parameters:
  newPage -



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.