📄 bytecodetag.java
字号:
/* * ByetCodeTag.java * * Created on June 25, 2003, 2:27 PM */package gov.nist.security.permissions.parser;import java.util.*;/** * Class representing a bytecode tag in a xml permissions file * @author DERUELLe Jean */public class ByteCodeTag { /**the class name of the method to invoke for bytecode rewriting*/ private String classToInvoke = null; /**the method to invoke for bytecode rewriting*/ private String method = null; /**the arguments list */ private Vector arguments=null; /** * Creates a new instance of ByteCodeTag * @param classToInvoke - the class name of the method to invoke for bytecode rewriting * @param method - the method to invoke for bytecode rewriting */ public ByteCodeTag(String classToInvoke, String method) { this.classToInvoke=classToInvoke; this.method=method; } /** * get the class name of the method to invoke for bytecode rewriting * @return the class to invoke */ public String getClassToInvoke() { return classToInvoke; } /** * set the class name of the method to invoke for bytecode rewriting * @param classToInvoke - the class to invoke */ public void setClassToInvoke(String classToInvoke) { this.classToInvoke=classToInvoke; } /** * get the method to invoke for bytecode rewriting * @return the method to invoke */ public String getMethod() { return method; } /** * set the method to invoke for bytecode rewriting * @param method - the method to invoke */ public void setMethod(String method) { this.method=method; } /** * get the arguments list * @return the arguments list */ public Vector getArguments(){ return arguments; } /** * set the arguments list * @param arguments - the arguments list */ public void setArguments(Vector arguments){ this.arguments=arguments; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -