Java Doc for STemplateLayout.java in  » Swing-Library » wings3 » org » wings » 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 » Swing Library » wings3 » org.wings 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.wings.SAbstractLayoutManager
      org.wings.STemplateLayout

All known Subclasses:   org.wings.SRootLayout,  org.wings.CmsLayout,
STemplateLayout
public class STemplateLayout extends SAbstractLayoutManager (Code)
Static layout manager that uses template files to arrange components.

Like any other layout manager it allows to place arbitrary elements, but you can write a simple HTML-page being the template for your container component. Though we encourage the use of the dynamic layout managers, this layout manager can be very useful in realising the main page layout of your web application.

To use this layout manager you have to define a template file required by the STemplateLayout instance. Inside this template file you can insert inside your custom HTML code desired wingS objects using tags like

<input name="compname">

or

<object name="compname"></object>

The name attribute of these input or object tag is the name you have to use as layout constraint when you add the desired component to the template layout managed SContainer :

panel.add(new SLabel("a test label), "compname"));

Besides this simple inlining mechanism the STemplateLayout manager has also another very powerful feature: Specific components bean attributes can be overwritten by specific optional inline attributes attached to your object html tags i.e. like

<object name="compname" background="#ff0000" text="new text"></object>

Please refer to javadoc of PropertyManager for more information on this feature.

Sample template file:
<HTML><BODY> Name der Person: <COMPONENT NAME=NAME><BR> Vorname der Person: <COMPONENT NAME=VORNAME ICON="vorname.gif"><BR> Wohnort der Person: <COMPONENT NAME=WOHNORT><BR> </BODY></HTML>
According java sample code::
templateContainer.setLayout(new STemplateLayout("templatefile")); templateContainer.addComponent(new SLabel("Haaf"), "NAME"); templateContainer.addComponent(new SButton("Armin"), "VORNAME"); templateContainer.addComponent(new SLabel("Neu-Ulm"), "WOHNORT");
See Also:   PropertyManager
author:
   Armin Haaf
author:
   Jochen Woehrle
author:
   Henner Zeller



Field Summary
protected  HashMapcomponents
    
protected transient  PageParserpageParser
    

Constructor Summary
public  STemplateLayout()
    
public  STemplateLayout(TemplateSource source)
     Create a TemplateLayout that reads its content from the generic TemplateSource .
public  STemplateLayout(String tmplFileName)
     Open a template from a file with the given name.
public  STemplateLayout(File tmplFile)
     Read the template from a file.
public  STemplateLayout(URL url)
     Read the template from an URL.

Method Summary
public  voidaddComponent(SComponent c, Object constraint, int index)
     add a component with the given constraint.
final public static  voidaddPropertyManager(PropertyManager p)
     Adds a PropertyManager.
public  SComponentgetComponent(String name)
     returns a map of the constraint/component.
public  PageParsergetPageParser()
    
final public static  PropertyManagergetPropertyManager(Class c)
     Determines appropriate property manager for the given SComponent or derived class.
public  TemplateSourcegetTemplateSource()
     Returns the source of the template layout.
public  voidremoveComponent(SComponent comp)
     removes the given component.
final public static  PropertyManagerremovePropertyManager(Class supportedComponentClass)
     Deregisters a property manager for a given component class to be able to replace it.
public  voidsetPageParser(PageParser pageParser)
    
public  voidsetTemplate(String templateFileName)
     Set the template to the template given as file name.
public  voidsetTemplate(File templateFile)
     Set the template to the template stored in the given file.
public  voidsetTemplate(URL templateURL)
     Set the template to the template which can be retrieved from the given URL.
public  voidsetTemplate(TemplateSource source)
     Sets the template from the DataSource.

Field Detail
components
protected HashMap components(Code)
Abstraction of the template source (file, resource, ..)



pageParser
protected transient PageParser pageParser(Code)
PageParser to use




Constructor Detail
STemplateLayout
public STemplateLayout()(Code)



STemplateLayout
public STemplateLayout(TemplateSource source)(Code)
Create a TemplateLayout that reads its content from the generic TemplateSource . The template source can be implemented to be read from any source you want to, e.g. database BLOBs. Whenever the source changes (i.e. lastModified() returns a different modification time the last time this source has been parsed), the template is reparsed.
Parameters:
  source - the TemplateSource this template is to be read from.



STemplateLayout
public STemplateLayout(String tmplFileName) throws java.io.IOException(Code)
Open a template from a file with the given name. Whenever the file changes, the Template is reloaded.
Parameters:
  tmplFileName - the filename to read the file from.
throws:
  java.io.IOException -



STemplateLayout
public STemplateLayout(File tmplFile) throws java.io.IOException(Code)
Read the template from a file. Open a template from a file. Whenever the file changes, the Template is reloaded.
Parameters:
  tmplFile - the File to read the template from.
throws:
  java.io.IOException -



STemplateLayout
public STemplateLayout(URL url) throws java.io.IOException(Code)
Read the template from an URL. The content is cached.
Parameters:
  url - the URL to read the template from.
throws:
  java.io.IOException -




Method Detail
addComponent
public void addComponent(SComponent c, Object constraint, int index)(Code)
add a component with the given constraint. The contstraint in the TemplateLayout is the value of the name attribute of the object in the HTML-template.
Parameters:
  c - the component to be added
Parameters:
  constraint - the string describing the



addPropertyManager
final public static void addPropertyManager(PropertyManager p)(Code)
Adds a PropertyManager. A Property Manager provides a mapping from properties given in template tags to properties of components. PropertyManager are responsible for a number of component classes; if there is already a mapping for a certain class, then this mapping is not added.



getComponent
public SComponent getComponent(String name)(Code)
returns a map of the constraint/component.



getPageParser
public PageParser getPageParser()(Code)
Retrieve the PageParser of this instance the current PageParser



getPropertyManager
final public static PropertyManager getPropertyManager(Class c)(Code)
Determines appropriate property manager for the given SComponent or derived class. Goes up the hierarchy.



getTemplateSource
public TemplateSource getTemplateSource()(Code)
Returns the source of the template layout.
See Also:   STemplateLayout.setTemplate(TemplateSource) the template source



removeComponent
public void removeComponent(SComponent comp)(Code)
removes the given component.
Parameters:
  comp - the component to be removed.



removePropertyManager
final public static PropertyManager removePropertyManager(Class supportedComponentClass)(Code)
Deregisters a property manager for a given component class to be able to replace it.
Parameters:
  supportedComponentClass - Target class as in org.wings.template.PropertyManager.getSupportedClasses



setPageParser
public void setPageParser(PageParser pageParser)(Code)
Set the PageParser for this instance
Parameters:
  pageParser - the new PageParser



setTemplate
public void setTemplate(String templateFileName) throws java.io.IOException(Code)
Set the template to the template given as file name.
throws:
  java.io.IOException -



setTemplate
public void setTemplate(File templateFile) throws java.io.IOException(Code)
Set the template to the template stored in the given file.
throws:
  java.io.IOException -



setTemplate
public void setTemplate(URL templateURL) throws java.io.IOException(Code)
Set the template to the template which can be retrieved from the given URL.
throws:
  java.io.IOException -



setTemplate
public void setTemplate(TemplateSource source)(Code)
Sets the template from the DataSource. Use this, if you hold your templates in databases etc. and write your own DataSource.
Parameters:
  source - the source this template is to be read.
See Also:   org.wings.template.TemplateSource



Fields inherited from org.wings.SAbstractLayoutManager
protected int border(Code)(Java Doc)
protected transient LayoutCG cg(Code)(Java Doc)
protected SContainer container(Code)(Java Doc)
protected SDimension preferredSize(Code)(Java Doc)

Methods inherited from org.wings.SAbstractLayoutManager
public int getBorder()(Code)(Java Doc)
public LayoutCG getCG()(Code)(Java Doc)
public SContainer getContainer()(Code)(Java Doc)
final public SDimension getPreferredSize()(Code)(Java Doc)
public void setBorder(int pixel)(Code)(Java Doc)
protected void setCG(LayoutCG newCG)(Code)(Java Doc)
public void setContainer(SContainer c)(Code)(Java Doc)
final public void setPreferredSize(SDimension preferredSize)(Code)(Java Doc)
public void updateCG()(Code)(Java Doc)
public void write(Device d) throws IOException(Code)(Java Doc)

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.