package com.vci.client.omd.attribpool.toOutside;
|
|
import org.jdesktop.swingx.JXTable;
|
/**
|
* 外界注入该项目的数据
|
* @author Administrator
|
*
|
*/
|
public class DataInjected {
|
private static DataInjected dataInjected = null;
|
private JXTable btwTable;
|
|
private DataInjected(){
|
|
}
|
|
public static DataInjected getInstance(){
|
if(dataInjected == null){
|
dataInjected = new DataInjected();
|
}
|
return dataInjected;
|
}
|
|
public void setBtwTabel(JXTable btwTable){
|
this.btwTable = btwTable;
|
}
|
|
public JXTable getBtwTabel(){
|
return btwTable;
|
}
|
}
|