package net.methodyne.bellvue.system; /** * Created by Methodyne GmbH. * User: yuri * Date: 1.3.2003 * Time: 16:10 */ import java.io.Serializable; import java.util.Vector; public class BClass implements Serializable { public long id = -1l; public String bclassname = ""; public Vector groups = new Vector(); public Vector referenceGroups = new Vector(); public String typeGroups() { return "net.methodyne.bellvue.system.Group"; } public String getTitle(){ return bclassname; } }