Uses of Class
cdx.scorebot.scoring.ScoringRule

Packages that use ScoringRule
cdx.scorebot.app.reporter Contains classes related to the Reporter. 
cdx.scorebot.scoring The framework for scoring test results. 
cdx.scorebot.scoring.logic Contains the data structures used to hold and process the information parsed by the Scoring Logic lexical analyzer. 
 

Uses of ScoringRule in cdx.scorebot.app.reporter
 

Fields in cdx.scorebot.app.reporter with type parameters of type ScoringRule
 java.util.Vector<ScoringRule> TeamScoringInfo.rules
          all scoring rules (from ntp)
 

Methods in cdx.scorebot.app.reporter with parameters of type ScoringRule
protected  java.lang.Integer TeamScoringInfo.getIndex(ScoringRule rule)
           
 java.lang.String CompleteScoringStats.subScoringRuleInfo(java.lang.String page, ScoringRule rule)
          substitute in Scoring Rule information
 

Uses of ScoringRule in cdx.scorebot.scoring
 

Methods in cdx.scorebot.scoring that return ScoringRule
 ScoringRule TestScoreEvent.getGeneratingRule()
          gets the generating rule
 ScoringRule ScoringRuleset.getScoringRule(int index)
          Gets the specified ScoringRule
 

Methods in cdx.scorebot.scoring that return types with arguments of type ScoringRule
 java.util.Vector<ScoringRule> ScoringRuleset.getRules()
          gets list of rules which define how to score test(s)
 

Methods in cdx.scorebot.scoring with parameters of type ScoringRule
 void ScoringRuleset.addScoringRule(ScoringRule rule)
          Adds a ScoringRule to be evaluated.
 

Constructors in cdx.scorebot.scoring with parameters of type ScoringRule
TestScoreEvent(ScoringRule generatingRule, int scoreChange, java.lang.String title)
          Creates the TestScoreEvent from the specified parameters.
TestScoreEvent(ScoringRule generatingRule, int scoreChange, java.lang.String title, java.lang.String msg)
          Creates the TestScoreEvent from the specified parameters.
 

Uses of ScoringRule in cdx.scorebot.scoring.logic
 

Constructors in cdx.scorebot.scoring.logic with parameters of type ScoringRule
Context(ScoringRule rule)
          instantiates a Context to store state for the specified rule (and its needed test results)