bytecodetag.java

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

JAVA
81
字号
/* * 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 + =
减小字号Ctrl + -
显示快捷键?