Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update at-since annotations up to 2.284 #5364

Merged
merged 1 commit into from
Mar 23, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public class BooleanParameterDefinition extends SimpleParameterDefinition {
private boolean defaultValue;

/**
* @since TODO
* @since 2.281
*/
@DataBoundConstructor
public BooleanParameterDefinition(String name) {
Expand Down Expand Up @@ -69,7 +69,7 @@ public boolean isDefaultValue() {
}

/**
* @since TODO
* @since 2.281
*/
@DataBoundSetter
public void setDefaultValue(boolean defaultValue) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
public class FileParameterDefinition extends ParameterDefinition {

/**
* @since TODO
* @since 2.281
*/
@DataBoundConstructor
public FileParameterDefinition(String name) {
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/java/hudson/model/ParameterDefinition.java
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ public String getDescription() {
}

/**
* @since TODO
* @since 2.281
*/
@DataBoundSetter
public void setDescription(@CheckForNull String description) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public class StringParameterDefinition extends SimpleParameterDefinition {
private boolean trim;

/**
* @since TODO
* @since 2.281
*/
@DataBoundConstructor
public StringParameterDefinition(String name) {
Expand Down Expand Up @@ -113,7 +113,7 @@ public boolean isTrim() {
}

/**
* @since TODO
* @since 2.281
*/
@DataBoundSetter
public void setTrim(boolean trim) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
public class TextParameterDefinition extends StringParameterDefinition {

/**
* @since TODO
* @since 2.281
*/
@DataBoundConstructor
public TextParameterDefinition(String name) {
Expand Down
4 changes: 2 additions & 2 deletions core/src/main/java/org/jenkins/ui/icon/Icon.java
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public Icon(String classSpec, String url, String style, IconType iconType) {
* @param url The icon image url.
* @param style The icon style.
* @param iconFormat the {@link IconFormat}.
* @since TODO
* @since 2.283
*/
public Icon(String classSpec, String url, String style, IconFormat iconFormat) {
this(classSpec, url, style, IconType.CORE, iconFormat);
Expand Down Expand Up @@ -143,7 +143,7 @@ public String getClassSpec() {

/**
* Is the Icon an SVG?
* @since TODO
* @since 2.283
*/
public boolean isSvgSprite() {
return iconFormat == IconFormat.EXTERNAL_SVG_SPRITE;
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/java/org/jenkins/ui/icon/IconFormat.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

/**
* Format for the icon.
* @since TODO
* @since 2.283
*/
public enum IconFormat {
IMG,
Expand Down