01: package tijmp;
02:
03: /** A class that represents an owner */
04: public class OwnerInfo {
05: private long ownerTag;
06: private byte referenceType;
07: private int index;
08:
09: public OwnerInfo(long ownerTag, byte referenceType, int index) {
10: this .ownerTag = ownerTag;
11: this .referenceType = referenceType;
12: this .index = index;
13: }
14:
15: public long getOwnerTag() {
16: return ownerTag;
17: }
18:
19: public byte getReferenceType() {
20: return referenceType;
21: }
22:
23: public int getIndex() {
24: return index;
25: }
26: }
|