KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > lenya > workflow > impl > BooleanVariableImpl


1 /*
2  * Copyright 1999-2004 The Apache Software Foundation
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */

17
18 /* $Id: BooleanVariableImpl.java 42837 2004-04-13 22:04:35Z joerg $ */
19
20 package org.apache.lenya.workflow.impl;
21
22 import org.apache.lenya.workflow.BooleanVariable;
23
24
25 /**
26  * Implementation of a boolean variable.
27  */

28 public class BooleanVariableImpl implements BooleanVariable {
29     
30     /**
31      * Creates a new instance of BooleanVariableImpl.
32      * @param variableName The variable name.
33      * @param initialValue The initial value of the corresponding variable instances.
34      */

35     protected BooleanVariableImpl(String JavaDoc variableName, boolean initialValue) {
36         name = variableName;
37
38         this.initialValue = initialValue;
39     }
40
41     private String JavaDoc name;
42
43     /**
44      * @see org.apache.lenya.workflow.BooleanVariable#getName()
45      */

46     public String JavaDoc getName() {
47         return name;
48     }
49
50     private boolean initialValue;
51
52     /**
53      * @see org.apache.lenya.workflow.BooleanVariable#getInitialValue()
54      */

55     public boolean getInitialValue() {
56         return initialValue;
57     }
58 }
59
Popular Tags