01: /*
02: * The contents of this file are subject to the
03: * Mozilla Public License Version 1.1 (the "License");
04: * you may not use this file except in compliance with the License.
05: * You may obtain a copy of the License at http://www.mozilla.org/MPL/
06: *
07: * Software distributed under the License is distributed on an "AS IS"
08: * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied.
09: * See the License for the specific language governing rights and
10: * limitations under the License.
11: *
12: * The Initial Developer of the Original Code is Simulacra Media Ltd.
13: * Portions created by Simulacra Media Ltd are Copyright (C) Simulacra Media Ltd, 2004.
14: *
15: * All Rights Reserved.
16: *
17: * Contributor(s):
18: */
19: package org.openharmonise.vfs.metadata.value;
20:
21: import org.openharmonise.vfs.metadata.*;
22:
23: /**
24: * This is the value for vocabulary type properties.
25: *
26: * @author Matthew Large
27: * @version $Revision: 1.1 $
28: *
29: */
30: public class BooleanValue implements ValueInstance {
31:
32: /**
33: * Value
34: */
35: private boolean m_bValue = false;
36:
37: /**
38: * Constructs a new boolean value
39: *
40: * @param bValue Value
41: */
42: public BooleanValue(boolean bValue) {
43: super ();
44: this .m_bValue = bValue;
45: }
46:
47: public BooleanValue() {
48: super ();
49: }
50:
51: /**
52: * Sets the value.
53: *
54: * @param bValue Value
55: */
56: public void setValue(boolean bValue) {
57: this .m_bValue = bValue;
58: }
59:
60: /**
61: * Returns the value.
62: *
63: * @return Value
64: */
65: public boolean getValue() {
66: return this .m_bValue;
67: }
68:
69: /* (non-Javadoc)
70: * @see java.lang.Object#equals(java.lang.Object)
71: */
72: public boolean equals(Object arg0) {
73: if (super .equals(arg0)) {
74: return true;
75: } else if (arg0 instanceof BooleanValue) {
76: if (this .m_bValue == ((BooleanValue) arg0).getValue()) {
77: return true;
78: } else {
79: return false;
80: }
81: } else {
82: return false;
83: }
84: }
85:
86: }
|