01: package org.objectweb.celtix.configuration.impl;
02:
03: import org.objectweb.celtix.configuration.Configuration;
04: import org.objectweb.celtix.configuration.ConfigurationProvider;
05:
06: public class TestProvider implements ConfigurationProvider {
07:
08: public Object getObject(String name) {
09: // 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 name, Object value) {
18: // TODO Auto-generated method stub
19: return false;
20: }
21:
22: public boolean save() {
23: return false;
24: }
25: }
|