package com.vci.client.uif.engine.client;
|
|
import java.util.ArrayList;
|
import java.util.List;
|
|
/**
|
* tabPage Model,负责管理所有tab页签中的model
|
* @author VCI_STGK_Lincq
|
*
|
*/
|
public class TabPageModel {
|
|
private List<IDataModel> tabPageModes = new ArrayList<IDataModel>();
|
|
public TabPageModel() {
|
|
}
|
|
public void addTabPageModel(IDataModel cDataModel) {
|
this.tabPageModes.add(cDataModel);
|
}
|
|
public List<IDataModel> getTabPageModel() {
|
return this.tabPageModes;
|
}
|
}
|