wangting
2025-01-16 18c43123b51a1688ab4ae01fe3d171c7d92e619b
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
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;
    }
}