com.imsweb.validation.entities.ValidatorTests Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of validation Show documentation
Show all versions of validation Show documentation
Java implemenation of the SEER edits.
/*
* Copyright (C) 2011 Information Management Services, Inc.
*/
package com.imsweb.validation.entities;
import java.util.HashMap;
import java.util.Map;
/**
* This class is a wrapper for all the test related to a particular validator.
*
* Created on Aug 8, 2011 by depryf
*/
public class ValidatorTests {
/** Tested Validator ID */
protected String _testedValidatorId;
/** Map of tests */
protected Map _tests;
/** @return Returns the testedValidatorId. */
public String getTestedValidatorId() {
return _testedValidatorId;
}
/**
* Constructor.
*
* Created on Nov 21, 2011 by depryf
*/
public ValidatorTests() {
_tests = new HashMap<>();
}
/**
* Constructor.
*
* Created on Nov 21, 2011 by depryf
*/
public ValidatorTests(String testedValidatorId) {
_testedValidatorId = testedValidatorId;
_tests = new HashMap<>();
}
/** @param testedValidatorId The testedValidatorId to set. */
public void setTestedValidatorId(String testedValidatorId) {
this._testedValidatorId = testedValidatorId;
}
/** @return Returns the tests. */
public Map getTests() {
return _tests;
}
/** @param tests The tests to set. */
public void setTests(Map tests) {
this._tests = tests;
}
}