Java Doc for BeanModel.java in  » Template-Engine » freemarker-2.3.10 » freemarker » ext » beans » 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 » Template Engine » freemarker 2.3.10 » freemarker.ext.beans 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   freemarker.ext.beans.BeanModel

All known Subclasses:   freemarker.ext.beans.IteratorModel,  freemarker.ext.beans.BooleanModel,  freemarker.ext.beans.EnumerationModel,  freemarker.ext.beans.ArrayModel,  freemarker.ext.beans.ResourceBundleModel,  freemarker.ext.beans.StringModel,  freemarker.ext.beans.DateModel,  freemarker.ext.beans.NumberModel,
BeanModel
public class BeanModel implements TemplateHashModelEx,AdapterTemplateModel,WrapperTemplateModel(Code)
A class that will wrap an arbitrary object into freemarker.template.TemplateHashModel interface allowing calls to arbitrary property getters and invocation of accessible methods on the object from a template using the object.foo to access properties and object.bar(arg1, arg2) to invoke methods on it. You can also use the object.foo[index] syntax to access indexed properties. It uses Beans java.beans.Introspector to dynamically discover the properties and methods.
author:
   Attila Szegedi
version:
   $Id: BeanModel.java,v 1.49.2.4 2006/11/12 10:20:37 szegedia Exp $


Field Summary
final static  ModelFactoryFACTORY
    
final protected  Objectobject
    
final protected  BeansWrapperwrapper
    

Constructor Summary
public  BeanModel(Object object, BeansWrapper wrapper)
     Creates a new model that wraps the specified object.

Method Summary
public  TemplateModelget(String key)
     Uses Beans introspection to locate a property or method with name matching the key name.
public  ObjectgetAdaptedObject(Class hint)
    
public  ObjectgetWrappedObject()
    
protected  booleanhasPlainGetMethod()
    
protected  TemplateModelinvokeGenericGet(Map keyMap, Class clazz, String key)
    
public  booleanisEmpty()
     Tells whether the model is empty.
protected  SetkeySet()
     Helper method to support TemplateHashModelEx.
public  TemplateCollectionModelkeys()
    
public  intsize()
    
public  StringtoString()
    
protected  Objectunwrap(TemplateModel model)
    
public  TemplateCollectionModelvalues()
    
protected  TemplateModelwrap(Object obj)
    

Field Detail
FACTORY
final static ModelFactory FACTORY(Code)



object
final protected Object object(Code)



wrapper
final protected BeansWrapper wrapper(Code)




Constructor Detail
BeanModel
public BeanModel(Object object, BeansWrapper wrapper)(Code)
Creates a new model that wraps the specified object. Note that there are specialized subclasses of this class for wrapping arrays, collections, enumeration, iterators, and maps. Note also that the superclass can be used to wrap String objects if only scalar functionality is needed. You can also choose to delegate the choice over which model class is used for wrapping to BeansWrapper.wrap(Object) .
Parameters:
  object - the object to wrap into a model.
Parameters:
  wrapper - the BeansWrapper associated with this model.Every model has to have an associated BeansWrapper instance. Themodel gains many attributes from its wrapper, including the caching behavior, method exposure level, method-over-item shadowing policy etc.




Method Detail
get
public TemplateModel get(String key) throws TemplateModelException(Code)
Uses Beans introspection to locate a property or method with name matching the key name. If a method or property is found, it is wrapped into freemarker.template.TemplateMethodModelEx (for a method or indexed property), or evaluated on-the-fly and the return value wrapped into appropriate model (for a simple property) Models for various properties and methods are cached on a per-class basis, so the costly introspection is performed only once per property or method of a class. (Side-note: this also implies that any class whose method has been called will be strongly referred to by the framework and will not become unloadable until this class has been unloaded first. Normally this is not an issue, but can be in a rare scenario where you create many classes on- the-fly. Also, as the cache grows with new classes and methods introduced to the framework, it may appear as if it were leaking memory. The framework does, however detect class reloads (if you happen to be in an environment that does this kind of things--servlet containers do it when they reload a web application) and flushes the cache. If no method or property matching the key is found, the framework will try to invoke methods with signature non-void-return-type get(java.lang.String), then non-void-return-type get(java.lang.Object), or alternatively (if the wrapped object is a resource bundle) Object getObject(java.lang.String).
throws:
  TemplateModelException - if there was no property nor method nora generic get method to invoke.



getAdaptedObject
public Object getAdaptedObject(Class hint)(Code)



getWrappedObject
public Object getWrappedObject()(Code)



hasPlainGetMethod
protected boolean hasPlainGetMethod()(Code)
Whether the model has a plain get(String) or get(Object) method



invokeGenericGet
protected TemplateModel invokeGenericGet(Map keyMap, Class clazz, String key) throws IllegalAccessException, InvocationTargetException, TemplateModelException(Code)



isEmpty
public boolean isEmpty()(Code)
Tells whether the model is empty. It is empty if either the wrapped object is null, or it is a Boolean with false value.



keySet
protected Set keySet()(Code)
Helper method to support TemplateHashModelEx. Returns the Set of Strings which are available via the TemplateHashModel interface. Subclasses that override invokeGenericGet to provide additional hash keys should also override this method.



keys
public TemplateCollectionModel keys()(Code)



size
public int size()(Code)



toString
public String toString()(Code)



unwrap
protected Object unwrap(TemplateModel model) throws TemplateModelException(Code)



values
public TemplateCollectionModel values() throws TemplateModelException(Code)



wrap
protected TemplateModel wrap(Object obj) throws TemplateModelException(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.