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

Quick Search    Search Deep

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

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

class IconConfig
extends java.lang.Object

Merlot Pluggable Icon Configuration

Version:
$Id: IconConfig.java,v 1.1.1.1 2001/07/02 15:41:28 flament Exp $

Field Summary
protected  DTDPluginConfig _parent
           
protected  java.util.List elements
           
protected  java.lang.String smallSource
           
protected  java.lang.String source
           
protected static java.lang.String XPATH_ELEMENT
           
protected static java.lang.String XPATH_SMALL_SOURCE
           
protected static java.lang.String XPATH_SOURCE
           
protected static java.lang.String XPATH_TEXT
           
 
Constructor Summary
(package private) IconConfig()
           
 
Method Summary
 boolean contains(java.lang.String elementName)
           
 java.lang.String getSmallSource()
           
 java.lang.String getSource()
           
 void parse(org.w3c.dom.Node node)
           
(package private)  void setParent(DTDPluginConfig parent)
           
 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_TEXT

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

XPATH_ELEMENT

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

XPATH_SMALL_SOURCE

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

XPATH_SOURCE

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

elements

protected java.util.List elements

smallSource

protected java.lang.String smallSource

source

protected java.lang.String source

_parent

protected DTDPluginConfig _parent
Constructor Detail

IconConfig

IconConfig()
Method Detail

parse

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

setParent

void setParent(DTDPluginConfig parent)

contains

public boolean contains(java.lang.String elementName)

getSmallSource

public java.lang.String getSmallSource()

getSource

public java.lang.String getSource()

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()).