propertyelement.java

来自「MoMEUnit是一个单元测试的J2ME的应用程序xUnit架构实例。这是来自J」· Java 代码 · 共 63 行

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