📄 inheritancetag.java
字号:
/* * 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -