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

Type

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

Fields Summary
private boolean
generated
Constructors Summary
protected Type(QName pqName)
Create a Type object for an xml construct name that represents a base type

param
pqName

        super(pqName);
    
protected Type(QName pqName, TypeEntry refType, Node pNode, String dims)
Create a TypeEntry 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 Type(QName pqName, Node pNode)
Create a Type object for an xml construct that is not a base type

param
pqName
param
pNode

        super(pqName, pNode);
    
Methods Summary
public booleanisGenerated()

        return generated;
    
public voidsetGenerated(boolean b)

        generated = b;