KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > axis > wsdl > symbolTable > ContainedEntry


1 package org.apache.axis.wsdl.symbolTable;
2
3 import javax.xml.namespace.QName JavaDoc;
4
5 public class ContainedEntry extends SymTabEntry {
6     protected TypeEntry type; // TypeEntry for nested type
7

8     /**
9      * @param qname
10      */

11     protected ContainedEntry(TypeEntry type, QName JavaDoc qname) {
12         super(qname);
13         this.type = type;
14     }
15     
16     /**
17      * @return Returns the type.
18      */

19     public TypeEntry getType() {
20         return type;
21     }
22     /**
23      * @param type The type to set.
24      */

25     public void setType(TypeEntry type) {
26         this.type = type;
27     }
28 }
29
Popular Tags