Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.merlotxml.merlot.plugin.dtd
Class GroupsConfig  view GroupsConfig download GroupsConfig.java

java.lang.Object
  extended byorg.merlotxml.merlot.plugin.dtd.GroupsConfig

public class GroupsConfig
extends java.lang.Object


Field Summary
protected  java.lang.ClassLoader classLoader
           
protected  java.util.HashMap groups
           
protected  java.util.List groupsOrder
           
protected static java.lang.String XPATH_ELEMENTS
           
protected static java.lang.String XPATH_GROUP
           
protected static java.lang.String XPATH_NAME
           
 
Constructor Summary
GroupsConfig(java.lang.ClassLoader classLoader)
          Creates a new instance of GroupsConfig
 
Method Summary
 java.util.HashMap getGroups()
           
 java.util.List getGroupsOrder()
           
 void parse(org.w3c.dom.Node node)
           
 void parseGroup(org.w3c.dom.Node node)
           
 java.lang.String toString()
          Convert this Object to a human-readable String.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

XPATH_GROUP

protected static final java.lang.String XPATH_GROUP
See Also:
Constant Field Values

XPATH_NAME

protected static final java.lang.String XPATH_NAME
See Also:
Constant Field Values

XPATH_ELEMENTS

protected static final java.lang.String XPATH_ELEMENTS
See Also:
Constant Field Values

classLoader

protected java.lang.ClassLoader classLoader

groups

protected java.util.HashMap groups

groupsOrder

protected java.util.List groupsOrder
Constructor Detail

GroupsConfig

public GroupsConfig(java.lang.ClassLoader classLoader)
Creates a new instance of GroupsConfig

Method Detail

parseGroup

public void parseGroup(org.w3c.dom.Node node)
                throws org.xml.sax.SAXException

parse

public void parse(org.w3c.dom.Node node)
           throws org.xml.sax.SAXException

getGroups

public java.util.HashMap getGroups()

getGroupsOrder

public java.util.List getGroupsOrder()

toString

public java.lang.String toString()
Description copied from class: java.lang.Object
Convert this Object to a human-readable String. There are no limits placed on how long this String should be or what it should contain. We suggest you make it as intuitive as possible to be able to place it into System.out.println() 55 and such.

It is typical, but not required, to ensure that this method never completes abruptly with a java.lang.RuntimeException.

This method will be called when performing string concatenation with this object. If the result is null, string concatenation will instead use "null".

The default implementation returns getClass().getName() + "@" + Integer.toHexString(hashCode()).