Typepublic abstract class Type extends TypeEntry This class represents a TypeEntry that is a type (complexType, simpleType, etc. |
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
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.
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
super(pqName, pNode);
|
Methods Summary |
---|
public boolean | isGenerated()
return generated;
| public void | setGenerated(boolean b)
generated = b;
|
|