com.okworx.ilcd.validation.common.CustomValidationContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ilcd-validation Show documentation
Show all versions of ilcd-validation Show documentation
A Java library for performing technical validation of data in ILCD data format.
package com.okworx.ilcd.validation.common;
import java.util.Locale;
/**
* CustomValidationContext class.
*
* @author oliver.kusche
* @version $Id: $Id
*/
public class CustomValidationContext extends ValidationContext {
/**
* Constructor for CustomValidationContext.
*/
public CustomValidationContext() {
this.locale = Locale.getDefault();
}
/**
* Constructor for CustomValidationContext.
*
* @param locale a {@link java.util.Locale} object.
*/
public CustomValidationContext(Locale locale) {
this.locale = locale;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy