|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of JavaCode in org.enhydra.xml.io |
Methods in org.enhydra.xml.io with parameters of type JavaCode | |
void |
OutputOptions.createCodeGenerator(java.lang.String varName,
boolean makeReadOnly,
JavaCode code)
Generate code to create an object with the same attributes as this object. |
Uses of JavaCode in org.enhydra.xml.xmlc.codegen |
Methods in org.enhydra.xml.xmlc.codegen that return JavaCode | |
JavaCode |
JavaMethod.getCode()
Get the code object associate with the method body. |
JavaCode |
JavaClass.getClassInitializer()
Get the class initializer. |
Methods in org.enhydra.xml.xmlc.codegen with parameters of type JavaCode | |
void |
VarNames.insertVarDefs(JavaCode body)
Insert variable definitions at the beginning of the body of a method. |
Uses of JavaCode in org.enhydra.xml.xmlc.deferredparsing |
Methods in org.enhydra.xml.xmlc.deferredparsing with parameters of type JavaCode | |
void |
DeferredParsingAccessorGenerator.createAccessMethodInit(ElementInfo elementInfo,
java.lang.String elementVarName,
JavaCode body)
Create code to setup an access method for an element when building the DOM. |
Uses of JavaCode in org.enhydra.xml.xmlc.dom |
Methods in org.enhydra.xml.xmlc.dom with parameters of type JavaCode | |
void |
AccessorGenerator.createAccessMethodInit(ElementInfo elementInfo,
java.lang.String elementVarName,
JavaCode body)
Create code to setup an access method for an element when building the DOM. |
void |
AccessorGenerator.createNullElementAccess(ElementInfo elementInfo,
JavaCode body)
Create code cached information so that element access methods return null. |
void |
AccessorGenerator.createResetElementAccess(ElementInfo elementInfo,
java.lang.String nodeVarName,
JavaCode body)
Create code to reset the element access information from a node. |
Uses of JavaCode in org.enhydra.xml.xmlc.dom.generic |
Methods in org.enhydra.xml.xmlc.dom.generic with parameters of type JavaCode | |
protected void |
NodeCreateGenerator.genDocumentCreate(org.w3c.dom.Document document,
java.lang.String docVar,
java.lang.String docTypeVar,
JavaCode body)
Generate Document and DocumentType creation. |
protected void |
NodeCreateGenerator.genDocumentTypeCreate(org.w3c.dom.DocumentType docType,
java.lang.String docVar,
java.lang.String varName,
JavaCode body)
Generate DocumentType creation. |
protected void |
NodeCreateGenerator.genEntityCreate(org.w3c.dom.Entity entity,
java.lang.String docVar,
java.lang.String varName,
JavaCode body)
Generate Entity creation. |
protected void |
NodeCreateGenerator.genAttrCreate(org.w3c.dom.Attr attr,
java.lang.String docVar,
java.lang.String varName,
JavaCode body)
Generate Attr creation. |
protected void |
NodeCreateGenerator.genCDATASectionCreate(org.w3c.dom.CDATASection cdataSection,
java.lang.String docVar,
java.lang.String varName,
JavaCode body)
Generate CDATASection creation. |
protected void |
NodeCreateGenerator.genCommentCreate(org.w3c.dom.Comment comment,
java.lang.String docVar,
java.lang.String varName,
JavaCode body)
Generate Comment creation. |
protected void |
NodeCreateGenerator.genElementCreate(org.w3c.dom.Element element,
java.lang.String docVar,
java.lang.String varName,
JavaCode body)
Generate Element creation. |
protected void |
NodeCreateGenerator.genEntityReferenceCreate(org.w3c.dom.EntityReference entityRef,
java.lang.String docVar,
java.lang.String varName,
JavaCode body)
Generate EntityReference creation. |
protected void |
NodeCreateGenerator.genNotationCreate(org.w3c.dom.Notation notation,
java.lang.String docVar,
java.lang.String varName,
JavaCode body)
Generate Notation creation. |
protected void |
NodeCreateGenerator.genProcessInstructionCreate(org.w3c.dom.ProcessingInstruction procInstr,
java.lang.String docVar,
java.lang.String varName,
JavaCode body)
Generate ProcessingInstruction creation. |
protected void |
NodeCreateGenerator.genTextCreate(org.w3c.dom.Text text,
java.lang.String docVar,
java.lang.String varName,
JavaCode body)
Generate Text creation. |
void |
NodeCreateGenerator.genNodeCreate(java.lang.String docVar,
java.lang.String varName,
org.w3c.dom.Node node,
JavaCode body)
Generate code to construct a node, assigning it to the supplied variable, Can be overriden by derived class |
void |
NodeCreateGenerator.genAppendChild(java.lang.String parentVar,
java.lang.String childVar,
org.w3c.dom.Node child,
JavaCode body)
Generate code to do an append child. |
void |
NodeCreateGenerator.genAddAttribute(java.lang.String elementVar,
java.lang.String attrVar,
JavaCode body)
Generate code to add attribute to an element. |
void |
NodeCreateGenerator.genAddEntity(java.lang.String docTypeVar,
java.lang.String entityVar,
org.w3c.dom.Entity entity,
JavaCode body)
Add an entity to a DocumentType |
void |
NodeCreateGenerator.genAddNotation(java.lang.String docTypeVar,
java.lang.String notationVar,
org.w3c.dom.Notation notation,
JavaCode body)
Add an notation to a DocumentType |
void |
GenericAccessorGenerator.createAccessMethodInit(ElementInfo elementInfo,
java.lang.String elementVarName,
JavaCode body)
Create code to setup an access method for an element when building the DOM. |
void |
GenericAccessorGenerator.createNullElementAccess(ElementInfo elementInfo,
JavaCode body)
Create code cached information so that element access methods return null. |
void |
GenericAccessorGenerator.createResetElementAccess(ElementInfo elementInfo,
java.lang.String nodeVarName,
JavaCode body)
Create code to reset the element access information from a node. |
void |
DOMBuilderGenerator.createMethodCall(JavaCode body)
Create a call to the top level method that was generated. |
Uses of JavaCode in org.enhydra.xml.xmlc.dom.lazydom |
Methods in org.enhydra.xml.xmlc.dom.lazydom with parameters of type JavaCode | |
void |
PreFormatter.createOutputOptionsCodeGenerator(java.lang.String varName,
JavaCode code)
Generate code to recreate the output options used to format this code. |
protected void |
LazyDOMNodeCreateGenerator.genDocumentCreate(org.w3c.dom.Document document,
java.lang.String docVar,
java.lang.String docTypeVar,
JavaCode body)
Generate Document creation. |
protected void |
LazyDOMNodeCreateGenerator.genDocumentTypeCreate(org.w3c.dom.DocumentType docType,
java.lang.String docVarName,
java.lang.String varName,
JavaCode body)
Generate DocumentType creation. |
protected void |
LazyDOMNodeCreateGenerator.genEntityCreate(org.w3c.dom.Entity entity,
java.lang.String docVarName,
java.lang.String varName,
JavaCode body)
Generate Entity creation. |
protected void |
LazyDOMNodeCreateGenerator.genAttrCreate(org.w3c.dom.Attr attr,
java.lang.String docVarName,
java.lang.String varName,
JavaCode body)
Generate Attr creation. |
protected void |
LazyDOMNodeCreateGenerator.genCDATASectionCreate(org.w3c.dom.CDATASection cdataSection,
java.lang.String docVarName,
java.lang.String varName,
JavaCode body)
Generate CDATASection creation. |
protected void |
LazyDOMNodeCreateGenerator.genCommentCreate(org.w3c.dom.Comment comment,
java.lang.String docVarName,
java.lang.String varName,
JavaCode body)
Generate Comment creation. |
protected void |
LazyDOMNodeCreateGenerator.genElementCreate(org.w3c.dom.Element element,
java.lang.String docVarName,
java.lang.String varName,
JavaCode body)
Generate Element creation. |
protected void |
LazyDOMNodeCreateGenerator.genEntityReferenceCreate(org.w3c.dom.EntityReference entityRef,
java.lang.String docVarName,
java.lang.String varName,
JavaCode body)
Generate EntityReference creation. |
protected void |
LazyDOMNodeCreateGenerator.genNotationCreate(org.w3c.dom.Notation notation,
java.lang.String docVarName,
java.lang.String varName,
JavaCode body)
Generate Notation creation. |
protected void |
LazyDOMNodeCreateGenerator.genProcessInstructionCreate(org.w3c.dom.ProcessingInstruction procInstr,
java.lang.String docVarName,
java.lang.String varName,
JavaCode body)
Generate ProcessingInstruction creation. |
protected void |
LazyDOMNodeCreateGenerator.genTextCreate(org.w3c.dom.Text text,
java.lang.String docVarName,
java.lang.String varName,
JavaCode body)
Generate Text creation. |
void |
LazyDOMDocBuilderGenerator.generateDocCreateFromTemplate(org.w3c.dom.Document document,
java.lang.String templateFieldName,
java.lang.String docFieldName,
JavaCode body)
Generate code to create a document from a TemplateDOM. |
void |
LazyDOMAccessorGenerator.createAccessMethodInit(ElementInfo elementInfo,
java.lang.String elementVarName,
JavaCode body)
This method does nothing for the Lazy DOM. |
void |
LazyDOMAccessorGenerator.createNullElementAccess(ElementInfo elementInfo,
JavaCode body)
Create code cached information so that element access methods return null. |
void |
LazyDOMAccessorGenerator.createResetElementAccess(ElementInfo elementInfo,
java.lang.String nodeVarName,
JavaCode body)
Create code to reset the element access information from a node. |
Uses of JavaCode in org.enhydra.xml.xmlc.dom.xerces |
Methods in org.enhydra.xml.xmlc.dom.xerces with parameters of type JavaCode | |
protected void |
XercesNodeCreateGenerator.genEntityCreate(org.w3c.dom.Entity entity,
java.lang.String docVar,
java.lang.String varName,
JavaCode body)
Generate Entity creation. |
protected void |
XercesNodeCreateGenerator.genNotationCreate(org.w3c.dom.Notation notation,
java.lang.String docVar,
java.lang.String varName,
JavaCode body)
Generate Notation creation. |
void |
XercesNodeCreateGenerator.genAddEntity(java.lang.String docTypeVar,
java.lang.String entityVar,
org.w3c.dom.Entity entity,
JavaCode body)
Add an entity to a DocumentType |
void |
XercesNodeCreateGenerator.genAddNotation(java.lang.String docTypeVar,
java.lang.String notationVar,
org.w3c.dom.Notation notation,
JavaCode body)
Add an notation to a DocumentType |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |