KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > openharmonise > vfs > metadata > value > StringValue


1 /*
2  * The contents of this file are subject to the
3  * Mozilla Public License Version 1.1 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at http://www.mozilla.org/MPL/
6  *
7  * Software distributed under the License is distributed on an "AS IS"
8  * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied.
9  * 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 string type properties.
25  *
26  * @author Matthew Large
27  * @version $Revision: 1.1 $
28  *
29  */

30 public class StringValue implements ValueInstance {
31
32     /**
33      * Value.
34      */

35     private String JavaDoc m_sValue = null;
36
37     /**
38      * Constructs a new string value.
39      *
40      * @param sValue Value
41      */

42     public StringValue(String JavaDoc sValue) {
43         super();
44         this.m_sValue = sValue;
45     }
46     
47     public StringValue() {
48         super();
49     }
50     
51     /**
52      * Sets the value.
53      *
54      * @param sValue Value
55      */

56     public void setValue(String JavaDoc sValue) {
57         this.m_sValue = sValue;
58     }
59     
60     /**
61      * Returns the value.
62      *
63      * @return Value
64      */

65     public String JavaDoc getValue() {
66         return this.m_sValue;
67     }
68     
69     /* (non-Javadoc)
70      * @see java.lang.Object#equals(java.lang.Object)
71      */

72     public boolean equals(Object JavaDoc arg0) {
73         if(super.equals(arg0)) {
74             return true;
75         } else if(arg0 instanceof StringValue) {
76             if(this.m_sValue.equals(((StringValue)arg0).getValue())) {
77                 return true;
78             } else {
79                 return false;
80             }
81         } else {
82             return false;
83         }
84     }
85
86 }
87
Popular Tags