Java Doc for CodeHelperInElementDto.java in  » J2EE » Jaffa » org » jaffa » components » codehelper » dto » 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 » J2EE » Jaffa » org.jaffa.components.codehelper.dto 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.jaffa.components.codehelper.dto.CodeHelperInElementDto

CodeHelperInElementDto
public class CodeHelperInElementDto (Code)
The input to the ICodeHelper, will consist of a List of instances of this class. The ICodeHelper will query the 'domainClassName' and use reflection to determine the fields to return. Additional criteria can be specified using instances of CriteriaElementDto. The properties domainClassName, codeFieldName and the descriptionFieldName are mandatory, for the ICodeHelper to work correctly.
author:
   GautamJ



Constructor Summary
public  CodeHelperInElementDto()
    

Method Summary
public  voidaddCriteriaField(CriteriaElementDto criteriaField)
    
public  voidclearCriteriaFields()
    
public  StringgetAppendBeginMarker()
     Getter for property appendBeginMarker.
public  StringgetAppendEndMarker()
     Getter for property appendEndMarker.
public  StringgetCode()
     Getter for property code.
public  StringgetCodeFieldName()
     Getter for property codeFieldName.
public  CriteriaElementDtogetCriteriaField(int index)
    
public  intgetCriteriaFieldCount()
    
public  CriteriaElementDto[]getCriteriaFields()
    
public  StringgetDescriptionFieldName()
     Getter for property descriptionFieldName.
public  StringgetDomainClassName()
     Getter for property domainClassName.
public  booleanisAppendCodeAndDescription()
     Getter for property appendCodeAndDescription.
public  booleanremoveCriteriaField(CriteriaElementDto criteriaField)
    
public  voidsetAppendBeginMarker(String appendBeginMarker)
     Setter for property appendBeginMarker.
public  voidsetAppendCodeAndDescription(boolean appendCodeAndDescription)
     Setter for property appendCodeAndDescription.
public  voidsetAppendEndMarker(String appendEndMarker)
     Setter for property appendEndMarker.
public  voidsetCode(String code)
     Setter for property code.
public  voidsetCodeFieldName(String codeFieldName)
     Setter for property codeFieldName.
public  voidsetCriteriaField(CriteriaElementDto criteriaField, int index)
    
public  voidsetCriteriaFields(CriteriaElementDto[] criteriaFields)
    
public  voidsetDescriptionFieldName(String descriptionFieldName)
     Setter for property descriptionFieldName.
public  voidsetDomainClassName(String domainClassName)
     Setter for property domainClassName.
public  StringtoString()
     Returns diagnostic information.


Constructor Detail
CodeHelperInElementDto
public CodeHelperInElementDto()(Code)
Creates new CodeHelperInElementDto




Method Detail
addCriteriaField
public void addCriteriaField(CriteriaElementDto criteriaField)(Code)
Add a criteriaField to the list
Parameters:
  criteriaField - A criteriaField



clearCriteriaFields
public void clearCriteriaFields()(Code)
Clear the list of criteriaField



getAppendBeginMarker
public String getAppendBeginMarker()(Code)
Getter for property appendBeginMarker. Value of property appendBeginMarker.



getAppendEndMarker
public String getAppendEndMarker()(Code)
Getter for property appendEndMarker. Value of property appendEndMarker.



getCode
public String getCode()(Code)
Getter for property code. Value of property code.



getCodeFieldName
public String getCodeFieldName()(Code)
Getter for property codeFieldName. Value of property codeFieldName.



getCriteriaField
public CriteriaElementDto getCriteriaField(int index)(Code)
Return a criteriaField at the specified position in the list
Parameters:
  index - The position in the list The criteriaField



getCriteriaFieldCount
public int getCriteriaFieldCount()(Code)
Returns the number of criteriaField in the list The number of criteriaField in the list



getCriteriaFields
public CriteriaElementDto[] getCriteriaFields()(Code)
Returns an array of criteriaField An array of criteriaField



getDescriptionFieldName
public String getDescriptionFieldName()(Code)
Getter for property descriptionFieldName. Value of property descriptionFieldName.



getDomainClassName
public String getDomainClassName()(Code)
Getter for property domainClassName. Value of property domainClassName.



isAppendCodeAndDescription
public boolean isAppendCodeAndDescription()(Code)
Getter for property appendCodeAndDescription. Value of property appendCodeAndDescription.



removeCriteriaField
public boolean removeCriteriaField(CriteriaElementDto criteriaField)(Code)
Remove a criteriaField from the list
Parameters:
  criteriaField - The criteriaField to be removed true if this list contained the specified element



setAppendBeginMarker
public void setAppendBeginMarker(String appendBeginMarker)(Code)
Setter for property appendBeginMarker.
Parameters:
  appendBeginMarker - New value of property appendBeginMarker.



setAppendCodeAndDescription
public void setAppendCodeAndDescription(boolean appendCodeAndDescription)(Code)
Setter for property appendCodeAndDescription.
Parameters:
  appendCodeAndDescription - New value of property appendCodeAndDescription.



setAppendEndMarker
public void setAppendEndMarker(String appendEndMarker)(Code)
Setter for property appendEndMarker.
Parameters:
  appendEndMarker - New value of property appendEndMarker.



setCode
public void setCode(String code)(Code)
Setter for property code.
Parameters:
  code - New value of property code.



setCodeFieldName
public void setCodeFieldName(String codeFieldName)(Code)
Setter for property codeFieldName.
Parameters:
  codeFieldName - New value of property codeFieldName.



setCriteriaField
public void setCriteriaField(CriteriaElementDto criteriaField, int index)(Code)
Add a criteriaField at the specified position in the list
Parameters:
  criteriaField - A criteriaField
Parameters:
  index - The position in the list



setCriteriaFields
public void setCriteriaFields(CriteriaElementDto[] criteriaFields)(Code)
Recreate the internal list with the input array of criteriaField
Parameters:
  criteriaFields - An array of criteriaField



setDescriptionFieldName
public void setDescriptionFieldName(String descriptionFieldName)(Code)
Setter for property descriptionFieldName.
Parameters:
  descriptionFieldName - New value of property descriptionFieldName.



setDomainClassName
public void setDomainClassName(String domainClassName)(Code)
Setter for property domainClassName.
Parameters:
  domainClassName - New value of property domainClassName.



toString
public String toString()(Code)
Returns diagnostic information. diagnostic information.



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.