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

ContainedEntry

public class ContainedEntry extends SymTabEntry

Fields Summary
protected TypeEntry
type
Constructors Summary
protected ContainedEntry(TypeEntry type, QName qname)

param
qname

        super(qname);
        this.type = type;
    
Methods Summary
public TypeEntrygetType()

return
Returns the type.

        return type;
    
public voidsetType(TypeEntry type)

param
type The type to set.

        this.type = type;