1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
| 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;
| }
| }
|
|