inheritancetag.java

来自「First of all, the Applet-phone is a SIP 」· Java 代码 · 共 55 行

JAVA
55
字号
/* * InheritanceTag.java * * Created on November 14, 2003, 3:25 PM */package gov.nist.security.permissions.parser;/** * Class representing a inheritance tag in a xml permissions file * @author  DERUELLE Jean */public class InheritanceTag {    /**the bytecode tag associated to this inheritance Tag*/    private ByteCodeTag byteCodeTag;    /**list of superclasses to check*/    private java.util.List superClassList=null;        /** Creates a new instance of InheritanceTag */    public InheritanceTag() {    }        /**     * return the super classes to check for this permission     * @return list of the super classes to check as a Vector     */        public java.util.List getSuperClassesToCheck() {        return superClassList;    }        /**     * set the super classes to check for this permission     * @param superClassList - list of the super classes to check as a Vector     */        public void setSuperClassesToCheck(java.util.List superClassList) {        this.superClassList=superClassList;    }        /**     * return the byte code tag for the method, it specifies the method to call on a class     * @return the bytecodeTag     */    public ByteCodeTag getByteCodeTag(){        return byteCodeTag;    }        /**     * set the byte code tag for the method, it specifies the method to call on a class     * @param byteCodeTag - the bytecodeTag     */    public void setByteCodeTag(ByteCodeTag byteCodeTag){        this.byteCodeTag=byteCodeTag;    }}

⌨️ 快捷键说明

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