org.eclipse.actf.validation.validators
Interface IValidationContext

All Known Implementing Classes:
AbstractValidationContext, AccessibilityValidationContext

public interface IValidationContext

interface to be implemented by users who wish to implement their own IValidator classes. The IValidationContext is intended to be a wrapper for all items, besides a IRuleSet or set of Rules, necessary to validate a component. Examples include IRuleBase configuration settings, global configuration settings, etc.

Author:
John Buslawski

Method Summary
 Object getParameter(String name)
          gets the parameter keyed by the name
 void setParameter(String name, Object value)
          sets the parameter to be stored in the IValidationContext
 

Method Detail

setParameter

void setParameter(String name,
                  Object value)
sets the parameter to be stored in the IValidationContext

Parameters:
name - -- name of the parameter as a String
value - -- the value of the parameter

getParameter

Object getParameter(String name)
gets the parameter keyed by the name

Parameters:
name - -- name of the parameter as a String
Returns:
the value of the parameter