KickJava   Java API By Example, From Geeks To Geeks.

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


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 State {
12     int stateid;
13     
14     public State(int id) {
15         this.stateid = id;
16     }
17     
18     /**
19      * @return Returns the stateid.
20      */

21     public int getStateid() {
22         return stateid;
23     }
24 }
25
Popular Tags