KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > util > explorer > context > api > ContextPropertiesFeeder


1 package org.objectweb.util.explorer.context.api;
2
3 /**
4  *
5  *
6  * @author <a HREF="mailto:Jerome.Moroy@lifl.fr">Jérôme Moroy</a>,
7  * <a HREF="mailto:Philippe.Merle@lifl.fr">Philippe Merle</a>.
8  *
9  * @version 0.1
10  */

11 public interface ContextPropertiesFeeder {
12
13     /** The name of the Fractal interface. */
14     public static final String JavaDoc CONTEXT_PROPERTIES_FEEDER = "context-properties-feeder";
15         
16     /**
17      * Registers the given set of <code>Decoder</code> objects.
18      * @param decoders A list of <code>Decoder</code> objects.
19      */

20     public void addDecoder(Decoder decoder);
21     
22 }
23
Popular Tags