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

PortEntry

public class PortEntry extends SymTabEntry
This class represents the symbol table entry for a WSDL port.
author
Karl Guggisberg

Fields Summary
private javax.wsdl.Port
port
the WSDL port element represented by this symbol table entry
Constructors Summary
public PortEntry(javax.wsdl.Port port)
constructor

param
port the WSDL port element


                 
       

        super(new QName(port.getName()));

        this.port = port;
    
Methods Summary
public javax.wsdl.PortgetPort()
replies the WSDL port element represented by this symbol table entry

return
the WSDL port element represented by this symbol table entry

        return port;