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

UndefinedType

public class UndefinedType extends Type implements Undefined
This represents a QName found in a reference but is not defined. If the type is later defined, the UndefinedType is replaced with a new Type

Fields Summary
private UndefinedDelegate
delegate
Field delegate
Constructors Summary
public UndefinedType(QName pqName)
Construct a referenced (but as of yet undefined) type

param
pqName


                      
       

        super(pqName, null);

        undefined = true;
        delegate = new UndefinedDelegate(this);
    
Methods Summary
public voidregister(TypeEntry referrant)
Register referrant TypeEntry so that the code can update the TypeEntry when the Undefined Element or Type is defined

param
referrant

        delegate.register(referrant);
    
public voidupdate(TypeEntry def)
Call update with the actual TypeEntry. This updates all of the referrant TypeEntry's that were registered.

param
def
throws
IOException

        delegate.update(def);