KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > celtix > configuration > Configurator


1 package org.objectweb.celtix.configuration;
2
3 import java.util.Collection JavaDoc;
4
5 public interface Configurator {
6     
7     Configuration getConfiguration();
8
9     Configurator getHook();
10     
11     Collection JavaDoc<Configurator> getClients();
12     
13     void registerClient(Configurator c);
14     
15     void unregisterClient(Configurator c);
16   
17 }
18
Popular Tags