KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > hudson > model > ProminentProjectAction


1 package hudson.model;
2
3 /**
4  * Marker interface for {@link Action}s that should be displayed
5  * at the top of the project page.
6  *
7  * @author Kohsuke Kawaguchi
8  */

9 public interface ProminentProjectAction extends Action {
10     // TODO: do the rendering of the part from the action page
11
}
12
Popular Tags