PIMAttributepublic class PIMAttribute extends Object Specification of a PIM attribute. |
Fields Summary |
---|
private int | attrPIM: field. | private String | labelPIM: label. |
Constructors Summary |
---|
public PIMAttribute(int attr, String labelResource)Constructor: attribute initialization.
this.attr = attr;
this.label = labelResource;
| public PIMAttribute()Default constructor: attribute initialization.
this(0, null);
|
Methods Summary |
---|
public int | getAttr()Gets attribute ID.
return attr;
| public java.lang.String | getLabel()Gets attribute label.
return label;
|
|