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

hudson.plugins.helpers.health.Messages Maven / Gradle / Ivy

The newest version!
// CHECKSTYLE:OFF

package hudson.plugins.helpers.health;

import org.jvnet.localizer.Localizable;
import org.jvnet.localizer.ResourceBundleHolder;

@SuppressWarnings({
    "",
    "PMD"
})
public class Messages {

    private final static ResourceBundleHolder holder = ResourceBundleHolder.get(Messages.class);

    /**
     * Java NCSS Report: {0} ({1})
     * 
     */
    public static String HealthTarget_Description(Object arg1, Object arg2) {
        return holder.format("HealthTarget.Description", arg1, arg2);
    }

    /**
     * Java NCSS Report: {0} ({1})
     * 
     */
    public static Localizable _HealthTarget_Description(Object arg1, Object arg2) {
        return new Localizable(holder, "HealthTarget.Description", arg1, arg2);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy