Java Doc for Id.java in  » EJB-Server-resin-3.1.5 » resin » com » caucho » amber » field » 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 » EJB Server resin 3.1.5 » resin » com.caucho.amber.field 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.caucho.amber.field.Id

All known Subclasses:   com.caucho.amber.field.SubId,  com.caucho.amber.field.CompositeId,
Id
public class Id (Code)
Configuration for a bean's field


Field Summary
final protected static  Loggerlog
    

Constructor Summary
public  Id(RelatedType ownerType, ArrayList<IdField> keys)
    
protected  Id(RelatedType ownerType)
    
public  Id(RelatedType ownerType, IdField key)
    

Method Summary
protected  voidaddKey(IdField key)
     Adds a new field to the id.
public  StringgenerateCastFromObject(String value)
     Generates code to convert to the type from the object.
public  voidgenerateCheckCreateKey(JavaWriter out)
     Generates the set clause.
public  voidgenerateCopy(JavaWriter out, String dest, String source)
     Generates code to copy to an object.
public  StringgenerateCreateTableSQL(AmberPersistenceUnit manager)
     Generates the where clause.
public  StringgenerateEquals(String leftBase, String value)
     Generates code to test the equals.
public  StringgenerateGetProperty(String value)
    
public  StringgenerateGetProxyKey(String value)
    
public  StringgenerateJavaSelect(String id)
     Generates the JPA QL select clause.
public  intgenerateLoadForeign(JavaWriter out, String rs, String indexVar, int index)
     Returns the foreign type.
public  intgenerateLoadForeign(JavaWriter out, String rs, String indexVar, int index, String name)
     Returns the foreign type.
public  voidgenerateLoadFromObject(JavaWriter out, String obj)
    
public  StringgenerateLoadSelect(String id)
     Generates the select clause.
public  voidgenerateMatch(JavaWriter out, String key)
     Generates code for a match.
public  StringgenerateMatchArgWhere(String id)
     Generates the where clause.
public  voidgeneratePrologue(JavaWriter out, HashSet<Object> completedSet, String name)
     Generates any prologue.
public  voidgeneratePrologue(JavaWriter out, HashSet<Object> completedSet)
     Generates any prologue.
public  StringgenerateRawWhere(String id)
     Generates the where clause.
public  StringgenerateSelect(String id)
     Generates the select clause.
public  voidgenerateSet(JavaWriter out, String obj)
    
public  voidgenerateSet(JavaWriter out, String pstmt, String index, String value)
     Generates the set clause.
public  voidgenerateSet(JavaWriter out, String pstmt, String index)
     Generates the set clause.
public  voidgenerateSetGeneratedKeys(JavaWriter out, String pstmt)
     Generates the set clause.
public  voidgenerateSetInsert(JavaWriter out, String pstmt, String index)
     Generates the set clause.
public  voidgenerateSetKey(JavaWriter out, String pstmt, String index, String keyObject)
     Generates the set clause.
public  voidgenerateUpdateFromObject(JavaWriter out, String obj)
    
public  ArrayList<Column>getColumns()
     Returns all the column.
public  EmbeddedIdFieldgetEmbeddedIdField()
    
public  StringgetForeignTypeName()
     Returns the foreign type.
public  IdFieldgetKey()
     Returns the keys.
public  intgetKeyCount()
     Returns all the keys.
public  ArrayList<IdField>getKeys()
     Returns all the keys.
public  ObjectgetObject(ResultSet rs, int index)
     Generates code to convert to the object.
public  RelatedTypegetOwnerType()
     Returns the owner type.
public  voidinit()
     Initialize the id.
public  booleanisEmbeddedId()
    
public  booleanisIdentityGenerator()
    
public  StringtoObject(String value)
     Generates code to convert to the object.
public  ObjecttoObjectKey(long value)
     Generates code to convert to the object.

Field Detail
log
final protected static Logger log(Code)




Constructor Detail
Id
public Id(RelatedType ownerType, ArrayList<IdField> keys)(Code)



Id
protected Id(RelatedType ownerType)(Code)



Id
public Id(RelatedType ownerType, IdField key)(Code)




Method Detail
addKey
protected void addKey(IdField key)(Code)
Adds a new field to the id.



generateCastFromObject
public String generateCastFromObject(String value)(Code)
Generates code to convert to the type from the object.



generateCheckCreateKey
public void generateCheckCreateKey(JavaWriter out) throws IOException(Code)
Generates the set clause.



generateCopy
public void generateCopy(JavaWriter out, String dest, String source) throws IOException(Code)
Generates code to copy to an object.



generateCreateTableSQL
public String generateCreateTableSQL(AmberPersistenceUnit manager)(Code)
Generates the where clause.



generateEquals
public String generateEquals(String leftBase, String value)(Code)
Generates code to test the equals.



generateGetProperty
public String generateGetProperty(String value)(Code)
Returns the key for the value



generateGetProxyKey
public String generateGetProxyKey(String value)(Code)
Returns the key for the value



generateJavaSelect
public String generateJavaSelect(String id)(Code)
Generates the JPA QL select clause.



generateLoadForeign
public int generateLoadForeign(JavaWriter out, String rs, String indexVar, int index) throws IOException(Code)
Returns the foreign type.



generateLoadForeign
public int generateLoadForeign(JavaWriter out, String rs, String indexVar, int index, String name) throws IOException(Code)
Returns the foreign type.



generateLoadFromObject
public void generateLoadFromObject(JavaWriter out, String obj) throws IOException(Code)
Generates loading cache



generateLoadSelect
public String generateLoadSelect(String id)(Code)
Generates the select clause.



generateMatch
public void generateMatch(JavaWriter out, String key) throws IOException(Code)
Generates code for a match.



generateMatchArgWhere
public String generateMatchArgWhere(String id)(Code)
Generates the where clause.



generatePrologue
public void generatePrologue(JavaWriter out, HashSet<Object> completedSet, String name) throws IOException(Code)
Generates any prologue.



generatePrologue
public void generatePrologue(JavaWriter out, HashSet<Object> completedSet) throws IOException(Code)
Generates any prologue.



generateRawWhere
public String generateRawWhere(String id)(Code)
Generates the where clause.



generateSelect
public String generateSelect(String id)(Code)
Generates the select clause.



generateSet
public void generateSet(JavaWriter out, String obj) throws IOException(Code)
Generates loading cache



generateSet
public void generateSet(JavaWriter out, String pstmt, String index, String value) throws IOException(Code)
Generates the set clause.



generateSet
public void generateSet(JavaWriter out, String pstmt, String index) throws IOException(Code)
Generates the set clause.



generateSetGeneratedKeys
public void generateSetGeneratedKeys(JavaWriter out, String pstmt) throws IOException(Code)
Generates the set clause.



generateSetInsert
public void generateSetInsert(JavaWriter out, String pstmt, String index) throws IOException(Code)
Generates the set clause.



generateSetKey
public void generateSetKey(JavaWriter out, String pstmt, String index, String keyObject) throws IOException(Code)
Generates the set clause.



generateUpdateFromObject
public void generateUpdateFromObject(JavaWriter out, String obj) throws IOException(Code)
Generates loading cache



getColumns
public ArrayList<Column> getColumns()(Code)
Returns all the column.



getEmbeddedIdField
public EmbeddedIdField getEmbeddedIdField()(Code)
Returns the embedded id field



getForeignTypeName
public String getForeignTypeName()(Code)
Returns the foreign type.



getKey
public IdField getKey()(Code)
Returns the keys.



getKeyCount
public int getKeyCount()(Code)
Returns all the keys.



getKeys
public ArrayList<IdField> getKeys()(Code)
Returns all the keys.



getObject
public Object getObject(ResultSet rs, int index) throws SQLException(Code)
Generates code to convert to the object.



getOwnerType
public RelatedType getOwnerType()(Code)
Returns the owner type.



init
public void init() throws ConfigException(Code)
Initialize the id.



isEmbeddedId
public boolean isEmbeddedId()(Code)
Returns true if this is an @EmbeddedId



isIdentityGenerator
public boolean isIdentityGenerator()(Code)



toObject
public String toObject(String value)(Code)
Generates code to convert to the object.



toObjectKey
public Object toObjectKey(long value)(Code)
Generates code to convert to the object.



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.