FileDocCategorySizeDatePackage
Element.javaAPI DocApache Axis 1.41585Sat Apr 22 18:57:28 BST 2006org.apache.axis.wsdl.symbolTable

Element

public abstract class Element extends TypeEntry
This class represents a TypeEntry that is a type (complexType, simpleType, etc.
author
Rich Scheuerle (scheu@us.ibm.com)

Fields Summary
Constructors Summary
protected Element(QName pqName, TypeEntry refType, Node pNode, String dims)
Create an Element object for an xml construct that references a type that has not been defined yet. Defer processing until refType is known.

param
pqName
param
refType
param
pNode
param
dims

        super(pqName, refType, pNode, dims);
    
protected Element(QName pqName, Node pNode)
Create a Element object for an xml construct that is not a base java type

param
pqName
param
pNode

        super(pqName, pNode);
    
Methods Summary