
hudson.util.Messages Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hudson-core Show documentation
Show all versions of hudson-core Show documentation
Contains the core Hudson code and view files to render HTML.
The newest version!
// CHECKSTYLE:OFF
package hudson.util;
import org.jvnet.localizer.Localizable;
import org.jvnet.localizer.ResourceBundleHolder;
@SuppressWarnings({
"",
"PMD"
})
public class Messages {
private final static ResourceBundleHolder holder = ResourceBundleHolder.get(Messages.class);
/**
* Required
*
*/
public static String FormValidation_ValidateRequired() {
return holder.format("FormValidation.ValidateRequired");
}
/**
* Required
*
*/
public static Localizable _FormValidation_ValidateRequired() {
return new Localizable(holder, "FormValidation.ValidateRequired");
}
/**
* In sync
*
*/
public static String ClockDifference_InSync() {
return holder.format("ClockDifference.InSync");
}
/**
* In sync
*
*/
public static Localizable _ClockDifference_InSync() {
return new Localizable(holder, "ClockDifference.InSync");
}
/**
* (show details)
*
*/
public static String FormValidation_Error_Details() {
return holder.format("FormValidation.Error.Details");
}
/**
* (show details)
*
*/
public static Localizable _FormValidation_Error_Details() {
return new Localizable(holder, "FormValidation.Error.Details");
}
/**
* Failed to check
*
*/
public static String ClockDifference_Failed() {
return holder.format("ClockDifference.Failed");
}
/**
* Failed to check
*
*/
public static Localizable _ClockDifference_Failed() {
return new Localizable(holder, "ClockDifference.Failed");
}
/**
* ahead
*
*/
public static String ClockDifference_Ahead() {
return holder.format("ClockDifference.Ahead");
}
/**
* ahead
*
*/
public static Localizable _ClockDifference_Ahead() {
return new Localizable(holder, "ClockDifference.Ahead");
}
/**
* behind
*
*/
public static String ClockDifference_Behind() {
return holder.format("ClockDifference.Behind");
}
/**
* behind
*
*/
public static Localizable _ClockDifference_Behind() {
return new Localizable(holder, "ClockDifference.Behind");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy