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

js.factoryEditing.ValidationError.js Maven / Gradle / Ivy

There is a newer version: 4.0.2
Show newest version
//generated code don't edit manually
export class ValidationError {
    constructor(enErrorText, deErrorText) {
        this.enErrorText = enErrorText;
        this.deErrorText = deErrorText;
    }
    getDisplayText(locale) {
        if (locale === "de") {
            return this.deErrorText;
        }
        else {
            return this.enErrorText;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy