01: /**
02: * Copyright (C) 2001-2005 France Telecom R&D
03: */package org.objectweb.speedo.pobjects.collection;
04:
05: /**
06: *
07: *
08: * @author chassase
09: */
10: public class I {
11: private long iid;
12: private J j;
13: private String j1;
14:
15: /**
16: * @param iid
17: * @param j1
18: */
19: public I(long iid, String j1) {
20: super ();
21: this .iid = iid;
22: this .j1 = j1;
23: }
24:
25: /**
26: * @return Returns the j.
27: */
28: public J getJ() {
29: return j;
30: }
31:
32: /**
33: * @param j The j to set.
34: */
35: public void setJ(J j) {
36: this .j = j;
37: }
38:
39: /**
40: * @return Returns the j1.
41: */
42: public String getJ1() {
43: return j1;
44: }
45:
46: /**
47: * @param j1 The j1 to set.
48: */
49: public void setJ1(String j1) {
50: this .j1 = j1;
51: }
52:
53: /**
54: * @return Returns the iid.
55: */
56: public long getIid() {
57: return iid;
58: }
59: }
|