📄 jbalpha.java
字号:
/*
* 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><objectview name="alpha" type="alpha" orderBy="name"
* orderSort="up" labelAtt="name" icon="" labelUrl=""/></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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -