Java Doc for GUI.java in  » Content-Management-System » contelligent » de » finix » contelligent » client » gui » 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 » Content Management System » contelligent » de.finix.contelligent.client.gui 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


de.finix.contelligent.client.gui.GUI

All known Subclasses:   de.finix.contelligent.client.gui.AbstractGUI,
GUI
public interface GUI (Code)
Implement this interface if you want to provide a GUI for a special component type. Use this GUI to get associated editor, renderer and view


Field Summary
final static  intCONTENT
    
final static  intDEFAULT
     The DEFAULT GUI should provide a GUI that fits into a large editor pane.
final static  intTABLE
     The TABLE GUI should provide a GUI that can live inside a table.
final static  intTEMPLATE
    


Method Summary
public  ContelligentComponentgetComponent()
    
public  StringgetConfiguration()
    
public  ListgetDefaultedCategoryNames()
    
public  ComponentEditorgetEditor(int type)
     Return an editor for this type of editing if supported, otherwise throw an exception.
public  StringgetFallbackResourceIdentifier()
    
public  GUIConfigurationEditorgetGUIConfigurationEditor()
    
public  ImageIcongetIcon()
     Returns the icon of this gui.
public  StringgetName()
     Returns the name of this gui.
public  ComponentRenderergetRenderer(int type)
     Return a renderer for this type of rendering if supported, otherwise throw an exception.
public  ContelligentResourcegetResource()
    
public  MapgetResourceCategoryMap()
    
public  StringgetResourceIdentifier()
    
public  MapgetResourceMap()
    
public  intgetResourceMode()
    
public  List<ContelligentCategory>getSensitiveCategories()
    
public  StringgetUnsupportedCategory()
    
public  StringgetUnsupportedCategoryValue()
    
public  ViewgetView()
    
public  booleanhidesSubcomponents()
     This method can be called to determine if this gui hides the subcomponents of the component that will be the edit root.
public  voidinit()
    
public  booleanisCategorySensitive()
    
public  booleanisResourceDefined()
    
public  booleanisResourceInherited()
    
public  booleanisResourceSupported()
    
public  booleanisSupported(int type)
    
public  voidsetCategories(List<ContelligentCategory> categories)
    
public  voidsetComponent(ContelligentComponent component)
    
public  voidsetConfiguration(String configuration)
    
public  voidsetResource(ContelligentResource resource)
    
public  voidsetResourceCategoryMap(Map categoryMap)
    
public  voidsetResourceMode(int resourceMode)
    
public  voidsetView(View view)
    

Field Detail
CONTENT
final static int CONTENT(Code)



DEFAULT
final static int DEFAULT(Code)
The DEFAULT GUI should provide a GUI that fits into a large editor pane.



TABLE
final static int TABLE(Code)
The TABLE GUI should provide a GUI that can live inside a table.



TEMPLATE
final static int TEMPLATE(Code)





Method Detail
getComponent
public ContelligentComponent getComponent()(Code)



getConfiguration
public String getConfiguration()(Code)



getDefaultedCategoryNames
public List getDefaultedCategoryNames()(Code)



getEditor
public ComponentEditor getEditor(int type) throws UnsupportedGUIException(Code)
Return an editor for this type of editing if supported, otherwise throw an exception.
Parameters:
  type - specifies what kind of context the editor is for:GUI.DEFAULT or GUI.TABLE



getFallbackResourceIdentifier
public String getFallbackResourceIdentifier()(Code)



getGUIConfigurationEditor
public GUIConfigurationEditor getGUIConfigurationEditor()(Code)



getIcon
public ImageIcon getIcon()(Code)
Returns the icon of this gui.



getName
public String getName()(Code)
Returns the name of this gui.



getRenderer
public ComponentRenderer getRenderer(int type) throws UnsupportedGUIException(Code)
Return a renderer for this type of rendering if supported, otherwise throw an exception.
Parameters:
  type - specifies what kind of context the renderer is for:GUI.DEFAULT or GUI.TABLE



getResource
public ContelligentResource getResource()(Code)



getResourceCategoryMap
public Map getResourceCategoryMap()(Code)



getResourceIdentifier
public String getResourceIdentifier()(Code)



getResourceMap
public Map getResourceMap()(Code)



getResourceMode
public int getResourceMode()(Code)



getSensitiveCategories
public List<ContelligentCategory> getSensitiveCategories()(Code)



getUnsupportedCategory
public String getUnsupportedCategory()(Code)



getUnsupportedCategoryValue
public String getUnsupportedCategoryValue()(Code)



getView
public View getView()(Code)



hidesSubcomponents
public boolean hidesSubcomponents()(Code)
This method can be called to determine if this gui hides the subcomponents of the component that will be the edit root. A gui for large containers for example hides the subcomponents by providing a search form. a boolean value that indicates wethersubcomponents should be hidden.



init
public void init()(Code)
init can be used to do initializations as it is called when a new GUI is constructed



isCategorySensitive
public boolean isCategorySensitive()(Code)



isResourceDefined
public boolean isResourceDefined()(Code)



isResourceInherited
public boolean isResourceInherited()(Code)



isResourceSupported
public boolean isResourceSupported()(Code)



isSupported
public boolean isSupported(int type)(Code)
Check whether this type of renderering and editing is supported
Parameters:
  type - specifies what kind of context the renderer is for:GUI.DEFAULT or GUI.TABLE



setCategories
public void setCategories(List<ContelligentCategory> categories)(Code)



setComponent
public void setComponent(ContelligentComponent component)(Code)



setConfiguration
public void setConfiguration(String configuration)(Code)



setResource
public void setResource(ContelligentResource resource)(Code)



setResourceCategoryMap
public void setResourceCategoryMap(Map categoryMap)(Code)



setResourceMode
public void setResourceMode(int resourceMode)(Code)



setView
public void setView(View view)(Code)



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