KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > hudson > ExtensionPoint


1 package hudson;
2
3 /**
4  * Marker interface that designates extensible components
5  * in Hudson that can be implemented by {@link Plugin}s.
6  *
7  * <p>
8  * Interfaces/classes that implement this interface can be extended by plugins.
9  * See respective interfaces/classes for more about how to register custom
10  * implementations to Hudson.
11  *
12  * @author Kohsuke Kawaguchi
13  * @see Plugin
14  */

15 public interface ExtensionPoint {
16 }
17
Popular Tags