KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > celtix > configuration > impl > TestProvider


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