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

com.okworx.ilcd.validation.common.ValidationContext Maven / Gradle / Ivy

Go to download

A Java library for performing technical validation of data in ILCD data format.

There is a newer version: 2.7.2
Show newest version
package com.okworx.ilcd.validation.common;

import java.util.Locale;

/**
 * 

Abstract ValidationContext class.

* * @author oliver.kusche * @version $Id: $Id */ public abstract class ValidationContext implements IValidationContext { protected Locale locale; /** *

Getter for the field locale.

* * @return a {@link java.util.Locale} object. */ public Locale getLocale() { return locale; } /** *

Setter for the field locale.

* * @param locale a {@link java.util.Locale} object. */ public void setLocale(Locale locale) { this.locale = locale; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy