package com.vci.client.portal.NewNewUI.buttonmng; import com.vci.corba.portal.data.PLTabButton; /** * PLTabButton对象包装,用作树节点 * @author VCI-STGK006 */ public class ClientPLTabButton { /** * tab页签按钮配置信息 */ private PLTabButton ptb; public ClientPLTabButton(PLTabButton ptb) { this.ptb = ptb; } public PLTabButton getPtb() { return ptb; } public void setPtb(PLTabButton ptb) { this.ptb = ptb; } @Override public String toString() { if(this.ptb == null) { return ""; } return ptb.plLabel; } }