⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 codeandarguments.java

📁 一个很好的开源项目管理系统源代码
💻 JAVA
字号:
package net.java.workeffort.webapp.support;/** * Message code and arguments.  * @author Antony Joseph */public class CodeAndArguments {    private String code;    private String args;    // args The arguments to the message. To handle multiple arguments use the    // comma as a seperator    public CodeAndArguments(String code, String args) {        this.code = code;        this.args = args;    }    /**     * @return Returns the code.     */    public String getCode() {        return code;    }    /**     * @return Returns the args     */    public String getArgs() {        return args;    }}

⌨️ 快捷键说明

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