KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > speedo > pobjects > intelli > Room


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

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

11 public class Room {
12     int roomid;
13     public Room(int id) {
14         roomid = id;
15     }
16     public int getRoomId() {
17         return roomid;
18     }
19 }
20
Popular Tags