📄 jbstaticgroup.java
字号:
/*
* OPIAM Suite
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package opiam.admin.faare.persistence.javabeans;
import java.util.ArrayList;
import java.util.List;
/**
* Basic class for static groups business bean.<br>
* In case the application contains static groups,
* the integrator may use this class or a subclass
* of this one as bean for the corresponding object.
* Name of the class and name of the attribute containing
* the members must be configured in the
* "staticgroup" element of the profiles_config.xml file.
*/
public class JBStaticGroup extends JBTop
{
/** Attribute containing members. */
private List uniqueMember = new ArrayList(); //DN
/** Creates new JBStaticGroup. */
public JBStaticGroup()
{
}
/** Getter for property uniqueMember.
* @return Value of property uniqueMember.
*/
public List getUniqueMember()
{
return uniqueMember;
}
/** Setter for property uniqueMember.
* @param auniqueMember New value of property uniqueMember.
*/
public void setUniqueMember(List auniqueMember)
{
this.uniqueMember = auniqueMember;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -