jbalpha.java

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

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

package opiam.admin.faare.service.services.views;

import opiam.admin.faare.persistence.javabeans.JBTop;


/**
 * This class allows to instantiate alphabetical type objects.<br>
 * These nodes are declared in the views.xml file by the "objectview" element
 * of type ="alpha".<br>
 *
 * Example:<br>
 *         <code>&lt;objectview name="alpha" type="alpha" orderBy="name"
 *         orderSort="up" labelAtt="name" icon="" labelUrl=""/&gt;</code><br>
 *
 */
public class JBAlpha extends JBTop
{
    /** Name of the node (letter). */
    private String name;

    /**
     * Returns the name of the node (letter).
     *
     * @return The name.
     */
    public String getName()
    {
        return name;
    }

    /**
     * Sets the name of the node (letter).
     *
     * @param aname  The name to set.
     */
    public void setName(String aname)
    {
        this.name = aname;
    }
}

⌨️ 快捷键说明

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