js.factoryEditing.ValidationError.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of domFactoryEditing Show documentation
Show all versions of domFactoryEditing Show documentation
factoryfx dependency injection framework
//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;
}
}
}