KickJava   Java API By Example, From Geeks To Geeks.

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


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

4 package org.objectweb.speedo.pobjects.collection;
5
6 /**
7  *
8  *
9  * @author chassase
10  */

11 public class I {
12     private long iid;
13     private J j;
14     private String JavaDoc j1;
15
16     /**
17      * @param iid
18      * @param j1
19      */

20     public I(long iid, String JavaDoc j1) {
21         super();
22         this.iid = iid;
23         this.j1 = j1;
24     }
25     /**
26      * @return Returns the j.
27      */

28     public J getJ() {
29         return j;
30     }
31     /**
32      * @param j The j to set.
33      */

34     public void setJ(J j) {
35         this.j = j;
36     }
37     /**
38      * @return Returns the j1.
39      */

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

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

52     public long getIid() {
53         return iid;
54     }
55 }
56
Popular Tags