menudisplayermapping.java
来自「Struts Menu这是为基于JSP和Struts的应用程序提供的Web菜单框」· Java 代码 · 共 70 行
JAVA
70 行
/* * 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 + =
减小字号Ctrl + -
显示快捷键?