Uses of Class
org.eclipse.actf.validation.core.ExecutionPoint

Packages that use ExecutionPoint
org.eclipse.actf.validation.core   
org.eclipse.actf.validation.javapp   
 

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

Subclasses of ExecutionPoint in org.eclipse.actf.validation.core
 class EventExecutionPoint
          an execution point triggered by the firing of an event.
 class MethodExecutionPoint
          an execution point that serves as a trigger for a validation from a method or constructor invocation.
 

Fields in org.eclipse.actf.validation.core declared as ExecutionPoint
protected  ExecutionPoint AbstractValidationProcess.execPoint
           
 

Methods in org.eclipse.actf.validation.core that return ExecutionPoint
 ExecutionPoint EventExecutionPoint.cloneExecutionPoint(String name, String validator, ExecutionPoint execPoint)
          return an ExecutionPoint of the same type but with a different name and validator class name.
abstract  ExecutionPoint ExecutionPoint.cloneExecutionPoint(String name, String validator, ExecutionPoint execPoint)
          return an ExecutionPoint of the same type but with a different name and validator class name.
 ExecutionPoint MethodExecutionPoint.cloneExecutionPoint(String name, String validator, ExecutionPoint execPoint)
          return an ExecutionPoint of the same type but with a different name and validator class name.
 ExecutionPoint ValidationProcessManager.createEventExecutionPointForTarget(String execPointName, Object target, Object event)
           
 ExecutionPoint ValidationProcessManager.createMethodExecutionPointForTarget(String execPointName, Object target, Object[] arguments, Member member)
           
 ExecutionPoint AbstractValidationProcess.getExecutionPoint()
          returns the ExecutionPoint triggering this IValidationProcess.
 ExecutionPoint IValidationProcess.getExecutionPoint()
          returns the ExecutionPoint triggering this IValidationProcess.
 ExecutionPoint ValidationProcessState.getExecutionPoint()
           
 

Methods in org.eclipse.actf.validation.core with parameters of type ExecutionPoint
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.
 ExecutionPoint EventExecutionPoint.cloneExecutionPoint(String name, String validator, ExecutionPoint execPoint)
          return an ExecutionPoint of the same type but with a different name and validator class name.
abstract  ExecutionPoint ExecutionPoint.cloneExecutionPoint(String name, String validator, ExecutionPoint execPoint)
          return an ExecutionPoint of the same type but with a different name and validator class name.
 ExecutionPoint MethodExecutionPoint.cloneExecutionPoint(String name, String validator, ExecutionPoint execPoint)
          return an ExecutionPoint of the same type but with a different name and validator class name.
 void ValidationProcessManager.initiateValidation(ExecutionPoint execPoint)
          Receives an ExecutionPoint and starts a IValidationProcess.
 void ValidationProcessManager.initiateValidation(ExecutionPoint[] execPoints)
          Receives an array of ExecutionPoints and starts a IValidationProcess for each one.
 void ValidationProcessManager.initiateValidation(ExecutionPoint[] execPoints, Map bridgeMap)
          Receives an array of ExecutionPoints and a component bridge map and starts a IValidationProcess.
 void ValidationProcessManager.initiateValidation(ExecutionPoint execPoint, Map bridgeMap)
          Receives an ExecutionPoint and a component bridge map and starts a IValidationProcess.
 void AbstractValidationProcess.setExecutionPoint(ExecutionPoint executionPoint)
          sets the ExecutionPoint used in this IValidationProcess.
 void IValidationProcess.setExecutionPoint(ExecutionPoint execPoint)
          sets the ExecutionPoint used in this IValidationProcess.
 void ValidationProcessState.setExecutionPoint(ExecutionPoint execPoint)
           
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 ExecutionPoint
AccessibilityValidationProcess(IRuleBase iRuleBase, ExecutionPoint execPoint, IValidationContext context)
           
FocusValidationProcess(IRuleBase iRuleBase, ExecutionPoint execPoint, IValidationContext context)
           
ValidationProcessState(ExecutionPoint execPoint, IRuleBase iRuleBase, IValidationContext context)
           
 

Uses of ExecutionPoint in org.eclipse.actf.validation.javapp
 

Constructors in org.eclipse.actf.validation.javapp with parameters of type ExecutionPoint
AspectGenerationProcess(IRuleBase ruleBase, ExecutionPoint execPoint, IValidationContext context)