Uses of Class
net.sourceforge.pmd.RuleSetNotFoundException

Packages that use RuleSetNotFoundException
net.sourceforge.pmd   
net.sourceforge.pmd.util   
 

Uses of RuleSetNotFoundException in net.sourceforge.pmd
 

Methods in net.sourceforge.pmd that throw RuleSetNotFoundException
 java.util.Iterator RuleSetFactory.getRegisteredRuleSets()
          Returns an Iterator of RuleSet objects loaded from descriptions from the "rulesets.properties" resource or from the "rulesets.filenames" property.
 RuleSet RuleSetFactory.createRuleSet(java.lang.String name, java.lang.ClassLoader classLoader)
          Create a ruleset from a name or from a list of name
 RuleSet RuleSetFactory.createRuleSet(java.lang.String name)
          Creates a ruleset.
private  java.io.InputStream RuleSetFactory.tryToGetStreamTo(java.lang.String name, java.lang.ClassLoader loader)
          Try to load a resource with the specified class loader
private  void RuleSetFactory.parseRuleNode(RuleSet ruleSet, org.w3c.dom.Node ruleNode)
          Parse a rule node
private  void RuleSetFactory.parseExternallyDefinedRuleNode(RuleSet ruleSet, org.w3c.dom.Node ruleNode)
          Process a reference to a rule
private  void RuleSetFactory.parseRuleNodeWithSimpleReference(RuleSet ruleSet, java.lang.String ref)
          Parse a rule node with a simple reference
private  void RuleSetFactory.parseRuleNodeWithExclude(RuleSet ruleSet, org.w3c.dom.Element ruleElement, java.lang.String ref)
          Parse a reference rule node with excludes
 

Uses of RuleSetNotFoundException in net.sourceforge.pmd.util
 

Methods in net.sourceforge.pmd.util that throw RuleSetNotFoundException
static java.io.InputStream ResourceLoader.loadResourceAsStream(java.lang.String name)
          Method to find a file, first by finding it as a file (either by the absolute or relative path), then as a URL, and then finally seeing if it is on the classpath.
static java.io.InputStream ResourceLoader.loadResourceAsStream(java.lang.String name, java.lang.ClassLoader loader)
          Uses the ClassLoader passed in to attempt to load the resource if it's not a File or a URL