Java Doc for NestedBase.java in  » XML » jibx-1.1.5 » org » jibx » binding » def » 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 » XML » jibx 1.1.5 » org.jibx.binding.def 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.jibx.binding.def.BindingBuilder
      org.jibx.binding.def.NestedBase

All known Subclasses:   org.jibx.binding.def.NestedCollection,  org.jibx.binding.def.NestedStructure,
NestedBase
abstract public class NestedBase extends BindingBuilder.ContainerBase implements IComponent,IContainer(Code)
Base class for structure and collection binding definitions. This handles one or more child components, which may be ordered or unordered.
author:
   Dennis M. Sosnoski
version:
   1.0


Field Summary
protected  ArrayListm_attributes
     Included attribute definitions (lazy create, only if needed).
protected  ArrayListm_contents
     Nested content definitions (initially used for all child components).
final protected  booleanm_isFlexible
     Flag for flexible element handling (used by subclasses).
final protected  booleanm_isOrdered
     Flag for ordered child content (used by subclasses).

Constructor Summary
public  NestedBase(IContainer contain, IContextObj objc, boolean ord, boolean flex, boolean defc)
     Constructor.

Method Summary
public  voidaddComponent(IComponent comp)
     Add child component to nested structure.
public  voidgenContentPresentTest(ContextMethodBuilder mb)
    
public  voidgenNewInstance(ContextMethodBuilder mb)
    
public  ArrayListgetAttributes()
     Get the attribute children of this mapping.
public  BindingDefinitiongetBindingRoot()
    
public  ArrayListgetContents()
     Get the content children of this mapping.
public  DefinitionContextgetDefinitionContext()
    
public  StringgetType()
    
public  NameDefinitiongetWrapperName()
    
public  booleanhasContent()
    
public  booleanhasNamespaces()
    
public  booleanisContentOrdered()
    
public  booleanisFlexible()
     Check if flexible unmarshalling.
public  booleanisOptional()
    
public  voidsetObjectContext(IContextObj objc)
     Set the object context.

Field Detail
m_attributes
protected ArrayList m_attributes(Code)
Included attribute definitions (lazy create, only if needed).



m_contents
protected ArrayList m_contents(Code)
Nested content definitions (initially used for all child components).



m_isFlexible
final protected boolean m_isFlexible(Code)
Flag for flexible element handling (used by subclasses).



m_isOrdered
final protected boolean m_isOrdered(Code)
Flag for ordered child content (used by subclasses).




Constructor Detail
NestedBase
public NestedBase(IContainer contain, IContextObj objc, boolean ord, boolean flex, boolean defc)(Code)
Constructor.
Parameters:
  contain - containing binding definition context
Parameters:
  objc - current object context
Parameters:
  ord - ordered content flag
Parameters:
  flex - flexible element handling flag
Parameters:
  defc - define context for structure flag




Method Detail
addComponent
public void addComponent(IComponent comp)(Code)
Add child component to nested structure. All components are initially assumed to contain content. When NestedBase.setLinkages is called the components are checked to determine whether they actually supply attribute(s), content, or both.
Parameters:
  comp - child component to be added to structure



genContentPresentTest
public void genContentPresentTest(ContextMethodBuilder mb) throws JiBXException(Code)



genNewInstance
public void genNewInstance(ContextMethodBuilder mb)(Code)



getAttributes
public ArrayList getAttributes()(Code)
Get the attribute children of this mapping. list of attribute children (null if none; should notbe modified)



getBindingRoot
public BindingDefinition getBindingRoot()(Code)



getContents
public ArrayList getContents()(Code)
Get the content children of this mapping. list of content children (should not be modified)



getDefinitionContext
public DefinitionContext getDefinitionContext()(Code)



getType
public String getType()(Code)



getWrapperName
public NameDefinition getWrapperName()(Code)



hasContent
public boolean hasContent()(Code)



hasNamespaces
public boolean hasNamespaces()(Code)



isContentOrdered
public boolean isContentOrdered()(Code)



isFlexible
public boolean isFlexible()(Code)
Check if flexible unmarshalling. flexible flag



isOptional
public boolean isOptional()(Code)



setObjectContext
public void setObjectContext(IContextObj objc)(Code)
Set the object context.
Parameters:
  objc - object context



Fields inherited from org.jibx.binding.def.BindingBuilder
final static int ACC_PACKAGE(Code)(Java Doc)
final static int ACC_PRIVATE(Code)(Java Doc)
final static int ACC_PROTECTED(Code)(Java Doc)
final static int ACC_PUBLIC(Code)(Java Doc)
final static int LINK_FIELDS(Code)(Java Doc)
final static int LINK_METHODS(Code)(Java Doc)
final static int LINK_NONE(Code)(Java Doc)
final static int NAME_HYPHENS(Code)(Java Doc)
final static int NAME_MIXED(Code)(Java Doc)

Methods inherited from org.jibx.binding.def.BindingBuilder
public static BindingDefinition unmarshalBindingDefinition(UnmarshallingContext ctx, String name, URL root) throws JiBXException(Code)(Java Doc)
public static void unmarshalInclude(UnmarshallingContext ctx, BindingDefinition bdef, URL root, ArrayList nslist, HashSet paths) throws JiBXException(Code)(Java Doc)
public static IMapping unmarshalMapping(UnmarshallingContext ctx, IContainer parent, ArrayList nss, boolean uord) throws JiBXException(Code)(Java Doc)
public static IComponent unmarshalStructure(UnmarshallingContext ctx, IContainer contain, IContextObj cobj, boolean coll, boolean uord, boolean implic) throws JiBXException(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.