01: package hero.xpdl;
02:
03: /**
04: *
05: * Bonita
06: * Copyright (C) 1999 Bull S.A.
07: * Bull 68 route de versailles 78434 Louveciennes Cedex France
08: * Further information: bonita@objectweb.org
09: *
10: * This library is free software; you can redistribute it and/or
11: * modify it under the terms of the GNU Lesser General Public
12: * License as published by the Free Software Foundation; either
13: * version 2.1 of the License, or any later version.
14: *
15: * This library is distributed in the hope that it will be useful,
16: * but WITHOUT ANY WARRANTY; without even the implied warranty of
17: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18: * Lesser General Public License for more details.
19: *
20: * You should have received a copy of the GNU Lesser General Public
21: * License along with this library; if not, write to the Free Software
22: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
23: * USA
24: *
25: *
26: --------------------------------------------------------------------------
27: * $Id: XPDLFormalParameter.java,v 1.1 2006/06/06 08:16:08 mvaldes Exp $
28: *
29: --------------------------------------------------------------------------
30: */
31:
32: import java.io.Serializable;
33:
34: public final class XPDLFormalParameter implements Serializable,
35: java.lang.Cloneable {
36:
37: // --------------------------------------------------- Instance Variables
38:
39: private String id = "";
40: private String index = "";
41: private String mode = "";
42:
43: // ----------------------------------------------------------- Properties
44:
45: //id
46: public String getId() {
47: return (id);
48: }
49:
50: public void setId(String id) {
51: this .id = id;
52: }
53:
54: // Index
55: public String getIndex() {
56: return (index);
57: }
58:
59: public void setIndex(String index) {
60: this .index = index;
61: }
62:
63: // Mode
64: public String getMode() {
65: return (mode);
66: }
67:
68: public void setMode(String mode) {
69: this .mode = mode;
70: }
71:
72: public XPDLFormalParameter() {
73: }
74:
75: public Object clone() throws java.lang.CloneNotSupportedException {
76: return super.clone();
77: }
78:
79: }
|