KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > hudson > model > Jobs


1 package hudson.model;
2
3 import java.util.List JavaDoc;
4
5 /**
6  * List of all installed {@link Job} types.
7  *
8  * @author Kohsuke Kawaguchi
9  */

10 public class Jobs {
11     /**
12      * List of all installed {@link JobPropertyDescriptor} types.
13      *
14      * <p>
15      * Plugins can add their {@link JobPropertyDescriptor}s to this list.
16      *
17      * @see JobPropertyDescriptor#getPropertyDescriptors(Class)
18      */

19     public static final List JavaDoc<JobPropertyDescriptor> PROPERTIES = Descriptor.toList(
20     );
21 }
22
Popular Tags