package com.vci.client.oq.ui.linkqtexport; import java.io.Serializable; import com.vci.client.portal.NewNewUI.Export.BaseExportNode; import com.vci.corba.omd.ltm.LinkType; /** * 分类树节点对象 * @author VCI-STGK006 * */ public class LinkQTExportBTMNode extends BaseExportNode implements Serializable { private static final long serialVersionUID = 1L; public LinkQTExportBTMNode(LinkType pac) { this.setBean(pac); this.setLeaf(IS_NOT_LEAF); } @Override public String toString() { if( getBean() != null) { String title = getBean().tag + "/" + getBean().name; if(this.getMessage() != null){ title += this.getMessage() ; } return title; } return ""; } @Override public LinkType getBean() { return (LinkType)this.bean; } }