Uses of Interface
org.eclipse.actf.validation.rulebase.IRuleBase

Packages that use IRuleBase
org.eclipse.actf.validation.core   
org.eclipse.actf.validation.rulebase   
org.eclipse.actf.validation.rules   
org.eclipse.actf.validation.valdoc.rulebase   
 

Uses of IRuleBase in org.eclipse.actf.validation.core
 

Fields in org.eclipse.actf.validation.core declared as IRuleBase
protected  IRuleBase AbstractValidationProcess.ruleBase
           
 

Methods in org.eclipse.actf.validation.core that return IRuleBase
protected  IRuleBase ValidationProcessManager.findRuleBaseForTarget(Object target)
           
protected  IRuleBase ValidationProcessManager.findRuleBaseForTarget(String targetName)
           
 IRuleBase AbstractValidationProcess.getRuleBase()
          returns the IRuleBase used in this IValidationProcess.
 IRuleBase IValidationProcess.getRuleBase()
          returns the IRuleBase used in this IValidationProcess.
 IRuleBase ValidationProcessState.getRuleBase()
           
 

Methods in org.eclipse.actf.validation.core with parameters of type IRuleBase
protected  void AccessibilityValidationProcess.calculateWork(ExecutionPoint execPoint, IRuleBase iRuleBase, IValidationContext context)
          visit the objects in the tree with the given target as the root.
protected  void FocusValidationProcess.calculateWork(ExecutionPoint execPoint, IRuleBase iRuleBase, IValidationContext context)
          visit the objects in the tree with the given target as the root.
protected  IValidationContext AccessibilityValidationProcess.cloneContext(IRuleBase iRuleBase, IValidationContext context)
           
 IValidationContext FocusValidationProcess.cloneContext(IRuleBase iRuleBase, IValidationContext context)
           
 void AbstractValidationProcess.setRuleBase(IRuleBase iRuleBase)
          sets the IRuleBase used in this IValidationProcess.
 void IValidationProcess.setRuleBase(IRuleBase rulebase)
          sets the IRuleBase used in this IValidationProcess.
 void ValidationProcessState.setRuleBase(IRuleBase iRuleBase)
           
protected  void AccessibilityValidationProcess.validate(ExecutionPoint execPoint, IRuleBase ruleBase, IValidationContext context)
          validate the objects in the tree with the given target as the root.
 void FocusValidationProcess.validate(ExecutionPoint execPoint, IRuleBase iRuleBase, IValidationContext context)
          validate the objects in the tree with the given target as the root.
protected  void AccessibilityValidationProcess.validateChildren(Object target, ExecutionPoint execPoint, IRuleBase ruleBase, IValidationContext context, boolean validate)
          Validate the child components of the given target.
protected  void FocusValidationProcess.validateChildren(Object target, ExecutionPoint execPoint, IRuleBase iRuleBase, IValidationContext context, boolean validate)
          Validate the child components of the given target.
protected  void AccessibilityValidationProcess.validateComponent(Object target, ExecutionPoint execPoint, IRuleBase ruleBase, IValidationContext context)
          used to validate single components.
 void FocusValidationProcess.validateComponent(Object target, ExecutionPoint execPoint, IRuleBase iRuleBase, IValidationContext context)
          used to validate single components.
protected  void AccessibilityValidationProcess.visitComponent(Object target, ExecutionPoint execPoint, IRuleBase iRuleBase, IValidationContext context)
          used to visit a single component.
protected  void FocusValidationProcess.visitComponent(Object target, ExecutionPoint execPoint, IRuleBase iRuleBase, IValidationContext context)
          used to visit a single component.
 

Constructors in org.eclipse.actf.validation.core with parameters of type IRuleBase
AccessibilityValidationProcess(IRuleBase iRuleBase, ExecutionPoint execPoint, IValidationContext context)
           
FocusValidationProcess(IRuleBase iRuleBase, ExecutionPoint execPoint, IValidationContext context)
           
ValidationProcessState(ExecutionPoint execPoint, IRuleBase iRuleBase, IValidationContext context)
           
 

Uses of IRuleBase in org.eclipse.actf.validation.rulebase
 

Subinterfaces of IRuleBase in org.eclipse.actf.validation.rulebase
 interface IDocumentRuleBase
          interface embodying a rulebase expressed as an XML document.
 

Methods in org.eclipse.actf.validation.rulebase that return IRuleBase
 IRuleBase IRuleBaseFactory.buildRuleBase(Object data)
          builds a rulebase from the information with which this factory is configured
 IRuleBase RuleBaseManager.getRuleBase(String name)
           
 IRuleBase[] RuleBaseManager.getRuleBasesByTarget(Object target)
           
 IRuleBase[] RuleBaseManager.getRuleBasesByTargetName(String targetName)
           
 

Methods in org.eclipse.actf.validation.rulebase with parameters of type IRuleBase
 void RuleBaseManager.addRuleBase(IRuleBase iRuleBase)
           
 

Uses of IRuleBase in org.eclipse.actf.validation.rules
 

Methods in org.eclipse.actf.validation.rules that return IRuleBase
 IRuleBase ICriterionFactory.getRuleBase()
           
 IRuleBase IRuleSet.getRuleBase()
          get the rulebase to which this ruleset belongs
 

Methods in org.eclipse.actf.validation.rules with parameters of type IRuleBase
 void ICriterionFactory.setRuleBase(IRuleBase ruleBase)
          set the rulebase for this factory
 void IRuleSet.setRuleBase(IRuleBase iRuleBase)
          set the rulebase to which this ruleset belongs
 

Uses of IRuleBase in org.eclipse.actf.validation.valdoc.rulebase
 

Classes in org.eclipse.actf.validation.valdoc.rulebase that implement IRuleBase
 class ValidationDocumentRuleBase
           
 

Methods in org.eclipse.actf.validation.valdoc.rulebase that return IRuleBase
 IRuleBase DocumentRuleBaseBuilder.buildRuleBase(Object data)
          builds a rulebase from the information with which this factory is configured
 IRuleBase DocumentRuleBaseBuilder.getRuleBase()
           
 IRuleBase ReflectionDocumentCriterionFactory.getRuleBase()
           
 IRuleBase ValidationDocumentRuleSet.getRuleBase()
           
 

Methods in org.eclipse.actf.validation.valdoc.rulebase with parameters of type IRuleBase
 void ReflectionDocumentCriterionFactory.setRuleBase(IRuleBase ruleBase)
           
 void ValidationDocumentRuleSet.setRuleBase(IRuleBase iRuleBase)
           
 

Constructors in org.eclipse.actf.validation.valdoc.rulebase with parameters of type IRuleBase
ValidationDocumentRuleSet(IRuleBase iRuleBase)