KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > hivemind > test > config > impl > Datum


1 // Copyright 2004, 2005 The Apache Software Foundation
2
//
3
// Licensed under the Apache License, Version 2.0 (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
6
//
7
// http://www.apache.org/licenses/LICENSE-2.0
8
//
9
// Unless required by applicable law or agreed to in writing, software
10
// distributed under the License is distributed on an "AS IS" BASIS,
11
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
// See the License for the specific language governing permissions and
13
// limitations under the License.
14

15 package hivemind.test.config.impl;
16
17 import org.apache.hivemind.impl.BaseLocatable;
18 import org.apache.hivemind.internal.Module;
19
20 /**
21  * Test object used when testing extension points.
22  *
23  * @author Howard Lewis Ship
24  */

25 public class Datum extends BaseLocatable
26 {
27     private String JavaDoc _key = "DEFAULT_KEY";
28     private String JavaDoc _value = "DEFAULT_VALUE";
29     private Module _contributingModule;
30     
31     public String JavaDoc getKey()
32     {
33         return _key;
34     }
35
36     public String JavaDoc getValue()
37     {
38         return _value;
39     }
40
41     public void setKey(String JavaDoc string)
42     {
43         _key = string;
44     }
45
46     public void setValue(String JavaDoc string)
47     {
48         _value = string;
49     }
50
51     public Module getContributingModule()
52     {
53         return _contributingModule;
54     }
55
56     public void setContributingModule(Module module)
57     {
58         _contributingModule = module;
59     }
60
61 }
62
Popular Tags