containedentry.java

来自「Java有关XML编程需要用到axis 的源代码 把里面bin下的包导入相应」· Java 代码 · 共 29 行

JAVA
29
字号
package org.apache.axis.wsdl.symbolTable;import javax.xml.namespace.QName;public class ContainedEntry extends SymTabEntry {        protected TypeEntry type;       // TypeEntry for nested type        /**     * @param qname     */    protected ContainedEntry(TypeEntry type, QName qname) {        super(qname);        this.type = type;    }        /**     * @return Returns the type.     */    public TypeEntry getType() {        return type;    }    /**     * @param type The type to set.     */    public void setType(TypeEntry type) {        this.type = type;    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?