package com.vci.client.framework.rightdistribution.object; import com.vci.corba.omd.btm.BtmItem; public class BizTypeEx { private BtmItem _bt; public BizTypeEx(BtmItem bt) { _bt = bt; } public BtmItem getBizType() { return _bt; } public void setBizType(BtmItem bt) { _bt = bt; } public String toString() { if (_bt != null) return String.format("%s [%s]", _bt.name, _bt.label); else return ""; } }