KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > hivemind > test > services > impl > BuilderAccessImpl


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.services.impl;
16
17 import hivemind.test.services.BuilderAccess;
18
19 import org.apache.commons.logging.Log;
20 import org.apache.hivemind.Messages;
21
22 /**
23  * Used to test {@link org.apache.hivemind.service.impl.BuilderFactory}.
24  *
25  * @author Howard Lewis Ship
26  */

27 public class BuilderAccessImpl implements BuilderAccess
28 {
29     private String _extensionPointId;
30     private Messages _messages;
31     private Log _log;
32
33     public void logMessage(String message)
34     {
35         _log.info(message);
36     }
37
38     public String getLocalizedMessage(String key)
39     {
40         return _messages.getMessage(key);
41     }
42
43     public String getExtensionPointId()
44     {
45         return _extensionPointId;
46     }
47
48     public Log getLog()
49     {
50         return _log;
51     }
52
53     public Messages getMessages()
54     {
55         return _messages;
56     }
57
58     public void setExtensionPointId(String string)
59     {
60         _extensionPointId = string;
61     }
62
63     public void setLog(Log log)
64     {
65         _log = log;
66     }
67
68     public void setMessages(Messages messages)
69     {
70         _messages = messages;
71     }
72
73 }
74
Popular Tags