ludc
2025-01-16 986aa62ed00bee39363bab41b4eeb8259d446efd
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
package com.vci.client.portal.Formdesign.object;
 
import java.awt.Component;
 
import javax.swing.JLabel;
 
import com.vci.client.portal.utility.PRMItem;
import com.vci.corba.omd.atm.AttribItem;
 
public class CompnentGroup {
    private String field = "";
    private AttribItem attribItem;
    private PRMItem prmItem;
    private JLabel jLabel = null;
    private Component jCompnent = null;
    
    public CompnentGroup() {
        
    }
    
    public CompnentGroup(String field) {
        this.field = field;
    }
    
    public void setField(String field) {
        this.field = field;
    }
    
    public String getField() {
        return this.field;
    }
 
 
    public AttribItem getAItem() {
        return attribItem;
    }
 
    public void setAItem(AttribItem attribItem) {
        this.attribItem = attribItem;
    }
 
    public PRMItem getPrmItem() {
        return prmItem;
    }
 
    public void setPrmItem(PRMItem prmItem) {
        this.prmItem = prmItem;
    }
 
    public JLabel getjLabel() {
        return jLabel;
    }
    
    public void setjLabel(JLabel jLabel) {
        this.jLabel = jLabel;
    }
 
    public Component getjCompnent() {
        return jCompnent;
    }
 
    public void setjCompnent(Component jCompnent) {
        this.jCompnent = jCompnent;
    }
 
}