01: /**
02: * Copyright (C) 2001-2004 France Telecom R&D
03: */package org.objectweb.speedo.pobjects.intelli;
04:
05: /**
06: *
07: *
08: * @author chassase
09: */
10: public class State {
11: int stateid;
12:
13: public State(int id) {
14: this .stateid = id;
15: }
16:
17: /**
18: * @return Returns the stateid.
19: */
20: public int getStateid() {
21: return stateid;
22: }
23: }
|