jbvalueelement.java

来自「OPIAM stands for Open Identity and Acces」· Java 代码 · 共 55 行

JAVA
55
字号
/*
 * OPIAM Suite
 *
 * Distributable under LGPL license.
 * See terms of license at gnu.org.
 */

package opiam.admin.faare.config.javabeans;

/**
 * Class corresponding to the "text" or "char" element of the exports_conf.xml file.
 */
public class JBValueElement implements java.io.Serializable
{
    /** Value. */
    private String value;

    /**
     * Gets the value.
     *
     * @return The value.
     */
    public String getValue()
    {
        return value;
    }

    /**
     * Sets the value.
     *
     * @param avalue  The value to set.
     */
    public void setValue(String avalue)
    {
        this.value = avalue;
    }

    /**
     * Gets the String representation of the object.
     *
     * @return The String representation.
     */
    public String toString()
    {
        StringBuffer buf = new StringBuffer();

        buf.append("value = ");
        buf.append(value);
        buf.append(System.getProperty("line.separator"));

        return buf.toString();
    }

}

⌨️ 快捷键说明

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