📄 propertyelement.java
字号:
package org.momeunit.ant.taskdefs;/** * Tag intended to specify property (it's name and value). * * @author Sergio Morozov * @version 1.1.2 */public class PropertyElement{ private String name = null; private String value = null; /** * Returns name of property. * * @return the name of property. * @since 1.1 */ public String getName() { return this.name; } /** * Sets name of property. * * @param name * name of property. * @since 1.1 */ public void setName(String name) { this.name = name; } /** * Returns value of property. * * @return the value of property. * @since 1.1 */ public String getValue() { return this.value; } /** * Sets value of property. * * @param value * value of property. * @since 1.1 */ public void setValue(String value) { this.value = value; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -