All Downloads are FREE. Search and download functionalities are using the official Maven repository.

hudson.model.Describable Maven / Gradle / Ivy

package hudson.model;

/**
 * Classes that are described by {@link Descriptor}.
 *
 * @author Kohsuke Kawaguchi
 */
public interface Describable> {
    /**
     * Gets the descriptor for this instance.
     *
     * 

* {@link Descriptor} is a singleton for every concrete {@link Describable} * implementation, so if a.getClass()==b.getClass() then * a.getDescriptor()==b.getDescriptor() must hold. */ Descriptor getDescriptor(); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy