hudson.plugins.build_timeout.Messages Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of build-timeout Show documentation
Show all versions of build-timeout Show documentation
Aborts a build if it's taking too long
The newest version!
// CHECKSTYLE:OFF
package hudson.plugins.build_timeout;
import org.jvnet.localizer.Localizable;
import org.jvnet.localizer.ResourceBundleHolder;
@SuppressWarnings({
"",
"PMD"
})
public class Messages {
private final static ResourceBundleHolder holder = ResourceBundleHolder.get(Messages.class);
/**
* Abort the build if it''s stuck
*
*/
public static String Descriptor_DisplayName() {
return holder.format("Descriptor.DisplayName");
}
/**
* Abort the build if it''s stuck
*
*/
public static Localizable _Descriptor_DisplayName() {
return new Localizable(holder, "Descriptor.DisplayName");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy