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