Java Doc for BeanCreateRule.java in  » Library » Apache-commons-betwixt-0.8-src » org » apache » commons » betwixt » io » 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 » Library » Apache commons betwixt 0.8 src » org.apache.commons.betwixt.io 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.apache.commons.betwixt.io.BeanCreateRule

BeanCreateRule
public class BeanCreateRule extends Rule (Code)

BeanCreateRule is a Digester Rule for creating beans from the betwixt XML metadata.


author:
   James Strachan
author:
   Martin van den BemtBeanRuleSet



Constructor Summary
public  BeanCreateRule(ElementDescriptor descriptor, Class beanClass, String pathPrefix)
     Convenience constructor which uses ID's for matching.
public  BeanCreateRule(ElementDescriptor descriptor, Class beanClass, String pathPrefix, boolean matchIDs)
     Constructor taking a class.
public  BeanCreateRule(ElementDescriptor descriptor, Class beanClass)
     Convenience constructor which uses ID's for matching.
public  BeanCreateRule(ElementDescriptor descriptor, Class beanClass, boolean matchIDs)
     Constructor uses standard qualified name.
public  BeanCreateRule(ElementDescriptor descriptor, Context context, String pathPrefix)
     Convenience constructor which uses ID's for match.
public  BeanCreateRule(ElementDescriptor descriptor, Context context, String pathPrefix, boolean matchIDs)
     Constructor taking a context.

Method Summary
protected  voidaddChildRules()
    
protected  voidaddChildRules(String prefix, ElementDescriptor currentDescriptor)
    
protected  voidaddPrimitiveTypeRule(String path, ElementDescriptor childDescriptor)
    
protected  voidaddRule(String path, Rule rule)
     Safely add a rule with given path.
public  voidbegin(Attributes attributes)
     Process the beginning of this element.
protected  ObjectcreateBean(Attributes attributes)
    
public  voidend()
     Process the end of this element.
public  voidfinish()
     Tidy up.
protected  BeanReadergetBeanReader()
     Get the associated bean reader.
protected  MapgetBeansById()
     Get the map used to index beans (previously read in) by id.
public  StringgetClassNameAttribute()
     The name of the attribute which can be specified in the XML to override the type of a bean used at a certain point in the schema.
protected  ElementDescriptorgetElementDescriptor(ElementDescriptor propertyDescriptor)
     Allows the navigation from a reference to a property object to the descriptor defining what the property is.
public  voidsetClassNameAttribute(String classNameAttribute)
     Sets the name of the attribute which can be specified in the XML to override the type of a bean used at a certain point in the schema.
public static  voidsetLog(Log aLog)
    
public  StringtoString()
     Return something meaningful for logging.


Constructor Detail
BeanCreateRule
public BeanCreateRule(ElementDescriptor descriptor, Class beanClass, String pathPrefix)(Code)
Convenience constructor which uses ID's for matching.
Parameters:
  descriptor - the ElementDescriptor describing the element mapped
Parameters:
  beanClass - the Class to be created
Parameters:
  pathPrefix - the digester style path



BeanCreateRule
public BeanCreateRule(ElementDescriptor descriptor, Class beanClass, String pathPrefix, boolean matchIDs)(Code)
Constructor taking a class.
Parameters:
  descriptor - the ElementDescriptor describing the element mapped
Parameters:
  beanClass - the Class to be created
Parameters:
  pathPrefix - the digester style path
Parameters:
  matchIDs - should ID/IDREF's be used for matching



BeanCreateRule
public BeanCreateRule(ElementDescriptor descriptor, Class beanClass)(Code)
Convenience constructor which uses ID's for matching.
Parameters:
  descriptor - the ElementDescriptor describing the element mapped
Parameters:
  beanClass - the Class to be created



BeanCreateRule
public BeanCreateRule(ElementDescriptor descriptor, Class beanClass, boolean matchIDs)(Code)
Constructor uses standard qualified name.
Parameters:
  descriptor - the ElementDescriptor describing the element mapped
Parameters:
  beanClass - the Class to be created
Parameters:
  matchIDs - should ID/IDREF's be used for matching



BeanCreateRule
public BeanCreateRule(ElementDescriptor descriptor, Context context, String pathPrefix)(Code)
Convenience constructor which uses ID's for match.
Parameters:
  descriptor - the ElementDescriptor describing the element mapped
Parameters:
  context - the Context to be used to evaluate expressions
Parameters:
  pathPrefix - the digester path prefix



BeanCreateRule
public BeanCreateRule(ElementDescriptor descriptor, Context context, String pathPrefix, boolean matchIDs)(Code)
Constructor taking a context.
Parameters:
  descriptor - the ElementDescriptor describing the element mapped
Parameters:
  context - the Context to be used to evaluate expressions
Parameters:
  pathPrefix - the digester path prefix
Parameters:
  matchIDs - should ID/IDREF's be used for matching




Method Detail
addChildRules
protected void addChildRules()(Code)
Adds the rules to the digester for all child elements



addChildRules
protected void addChildRules(String prefix, ElementDescriptor currentDescriptor)(Code)
Add child rules for given descriptor at given prefix
Parameters:
  prefix - add child rules at this (digester) path prefix
Parameters:
  currentDescriptor - add child rules for this descriptor



addPrimitiveTypeRule
protected void addPrimitiveTypeRule(String path, ElementDescriptor childDescriptor)(Code)
Adds a new Digester rule to process the text as a primitive type
Parameters:
  path - digester path where this rule will be attached
Parameters:
  childDescriptor - update this ElementDescriptor with the body text



addRule
protected void addRule(String path, Rule rule)(Code)
Safely add a rule with given path.
Parameters:
  path - the digester path to add rule at
Parameters:
  rule - the Rule to add



begin
public void begin(Attributes attributes)(Code)
Process the beginning of this element.
Parameters:
  attributes - The attribute list of this element



createBean
protected Object createBean(Attributes attributes)(Code)
Factory method to create new bean instances
Parameters:
  attributes - the Attributes used to match ID/IDREF the created bean



end
public void end()(Code)
Process the end of this element.



finish
public void finish()(Code)
Tidy up.



getBeanReader
protected BeanReader getBeanReader()(Code)
Get the associated bean reader. the BeanReader



getBeansById
protected Map getBeansById()(Code)
Get the map used to index beans (previously read in) by id. This is stored in the evaluation context. map indexing beans created by id



getClassNameAttribute
public String getClassNameAttribute()(Code)
The name of the attribute which can be specified in the XML to override the type of a bean used at a certain point in the schema.

The default value is 'className'.

The name of the attribute used to overload the class name of a bean



getElementDescriptor
protected ElementDescriptor getElementDescriptor(ElementDescriptor propertyDescriptor)(Code)
Allows the navigation from a reference to a property object to the descriptor defining what the property is. In other words, doing the join from a reference to a type to lookup its descriptor. This could be done automatically by the NodeDescriptors. Refer to TODO.txt for more info.
Parameters:
  propertyDescriptor - find descriptor for property object referenced by this descriptor descriptor for the singular property class type referenced.



setClassNameAttribute
public void setClassNameAttribute(String classNameAttribute)(Code)
Sets the name of the attribute which can be specified in the XML to override the type of a bean used at a certain point in the schema.

The default value is 'className'.


Parameters:
  classNameAttribute - The name of the attribute used to overload the class name of a bean



setLog
public static void setLog(Log aLog)(Code)
Set log to be used by BeanCreateRule instances
Parameters:
  aLog - the Log implementation for this class to log to



toString
public String toString()(Code)
Return something meaningful for logging. something useful for logging



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