diff --git a/core/src/main/java/hudson/model/ParameterValue.java b/core/src/main/java/hudson/model/ParameterValue.java index 502b45705c7d6127f62f9c4010ec96f5d261a5a5..570b607e341899ea64c7df5f90f261d7616bc555 100644 --- a/core/src/main/java/hudson/model/ParameterValue.java +++ b/core/src/main/java/hudson/model/ParameterValue.java @@ -26,6 +26,8 @@ package hudson.model; import hudson.EnvVars; import hudson.Util; +import hudson.scm.SCM; +import hudson.slaves.OfflineCause; import hudson.tasks.BuildWrapper; import hudson.tasks.Builder; import hudson.util.VariableResolver; @@ -51,7 +53,7 @@ import org.kohsuke.stapler.export.ExportedBean; * Instances of {@link ParameterValue}s are persisted into build's build.xml * through XStream (via {@link ParametersAction}), so instances need to be persistable. * - *

Assocaited Views

+ *

Associated Views

*

value.jelly

* The value.jelly view contributes a UI fragment to display the parameter * values used for a build. @@ -64,6 +66,7 @@ import org.kohsuke.stapler.export.ExportedBean; * {@link ParameterDefinition} is. * * @see ParameterDefinition + * @see ParametersAction */ @ExportedBean(defaultVisibility=3) public abstract class ParameterValue implements Serializable {