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

org.praxislive.ide.project.Bundle Maven / Gradle / Ivy

package org.praxislive.ide.project;
/** Localizable strings for {@link org.praxislive.ide.project}. */
class Bundle {
    /**
     * @param library_URI library URI
     * @return Error adding library {@code library_URI}
     * @see ProjectPropertiesImpl
     */
    static String ERR_addLibraryError(Object library_URI) {
        return org.openide.util.NbBundle.getMessage(Bundle.class, "ERR_addLibraryError", library_URI);
    }
    /**
     * @return Continue building project?
     * @see DefaultPraxisProject
     */
    static String ERR_elementContinueBuild() {
        return org.openide.util.NbBundle.getMessage(Bundle.class, "ERR_elementContinueBuild");
    }
    /**
     * @return Continue running project?
     * @see DefaultPraxisProject
     */
    static String ERR_elementContinueRun() {
        return org.openide.util.NbBundle.getMessage(Bundle.class, "ERR_elementContinueRun");
    }
    /**
     * @param path_or_command path or command
     * @return Error executing {@code path_or_command}
     * @see DefaultPraxisProject
     */
    static String ERR_elementExecution(Object path_or_command) {
        return org.openide.util.NbBundle.getMessage(Bundle.class, "ERR_elementExecution", path_or_command);
    }
    /**
     * @param required_Java_release required Java release
     * @return This project requires Java {@code required_Java_release}
     * @see DefaultPraxisProject
     */
    static String PraxisProject_javaVersionError(Object required_Java_release) {
        return org.openide.util.NbBundle.getMessage(Bundle.class, "PraxisProject.javaVersionError", required_Java_release);
    }
    private Bundle() {}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy