KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > celtix > bus > configuration > TestConfigurationProvider


1 package org.objectweb.celtix.bus.configuration;
2
3 import org.objectweb.celtix.configuration.Configuration;
4 import org.objectweb.celtix.configuration.ConfigurationProvider;
5
6 public class TestConfigurationProvider implements ConfigurationProvider {
7
8     public Object JavaDoc getObject(String JavaDoc name) {
9         return null;
10     }
11
12     public boolean setObject(String JavaDoc name, Object JavaDoc value) {
13         return false;
14     }
15
16     public void init(Configuration configuration) {
17     }
18
19     public boolean save() {
20         return false;
21     }
22
23 }
24
Popular Tags