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

📄 menudisplayermapping.java

📁 Struts Menu这是为基于JSP和Struts的应用程序提供的Web菜单框架。菜单可以在一个XML文件中定义
💻 JAVA
字号:
/* * MenuDisplayerMapping.java * * Created on February 6, 2001, 5:24 PM */package net.sf.navigator.displayer;/** * * @author  ssayles * @version */public class MenuDisplayerMapping {    //~ Instance fields ========================================================    /** Holds value of property name. */    private String name;    /** Holds value of property type. */    private String type;    /** Holds value of property config. */    private String config;    //~ Methods ================================================================    /** Getter for property name.     * @return Value of property name.     */    public String getName() {        return name;    }    /** Setter for property name.     * @param name New value of property name.     */    public void setName(String name) {        this.name = name;    }    /** Getter for property type.     * @return Value of property type.     */    public String getType() {        return type;    }    /** Setter for property type.     * @param type New value of property type.     */    public void setType(String type) {        this.type = type;    }    /** Getter for property config.     * @return Value of property config.     */    public String getConfig() {        return config;    }    /** Setter for property config.     * @param config New value of property config.     */    public void setConfig(String config) {        this.config = config;    }}

⌨️ 快捷键说明

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