KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > speedo > pobjects > collection > J


1 /**
2  * Copyright (C) 2001-2005 France Telecom R&D
3  */

4 package org.objectweb.speedo.pobjects.collection;
5
6 import java.util.Collection JavaDoc;
7
8 /**
9  *
10  *
11  * @author chassase
12  */

13 public class J {
14     private long jid;
15     private Collection JavaDoc is;
16     private String JavaDoc j1;
17
18     
19     /**
20      * @param jid
21      * @param j1
22      */

23     public J(long jid, String JavaDoc j1) {
24         super();
25         this.jid = jid;
26         this.j1 = j1;
27     }
28     
29     /**
30      * @return Returns the jid.
31      */

32     public long getJid() {
33         return jid;
34     }
35     /**
36      * @return Returns the j1.
37      */

38     public String JavaDoc getJ1() {
39         return j1;
40     }
41     /**
42      * @param j1 The j1 to set.
43      */

44     public void setJ1(String JavaDoc j1) {
45         this.j1 = j1;
46     }
47     /**
48      * @return Returns the is.
49      */

50     public Collection JavaDoc getIs() {
51         return is;
52     }
53 }
54
Popular Tags