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;
|
}
|
|
}
|