|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectpaulscode.sound.utils.XMLNode
public class XMLNode
The XMLNode class contains an XML tag's name, its parameters, and a handle
to the next XMLNode.
XMLNode License:
You are free to use this class for any purpose, commercial or otherwise.
You may modify this class or source code, and distribute it any way you
like, provided the following conditions are met:
1) You may not falsely claim to be the author of this class or any
unmodified portion of it.
2) You may not copyright this class or a modified version of it and then
sue me for copyright infringement.
3) If you modify the source code, you must clearly document the changes
made before redistributing the modified source code, so other users know
it is not the original code.
4) You are not required to give me credit for this class in any derived
work, but if you do, you must also mention my website:
http://www.paulscode.com
5) I the author will not be responsible for any damages (physical,
financial, or otherwise) caused by the use if this class or any portion
of it.
6) I the author do not guarantee, warrant, or make any representations,
either expressed or implied, regarding the use of this class or any
portion of it.
Author: Paul Lamb
http://www.paulscode.com
| Field Summary | |
|---|---|
protected java.lang.String |
contents
Entire contents of the XML tag. |
protected java.lang.String |
name
Name of the XML tag. |
protected XMLNode |
next
Handle to the next XMLNode. |
protected java.util.HashMap<java.lang.String,java.lang.String> |
parameters
Hashmap containing parameter/value pairs for this tag. |
| Constructor Summary | |
|---|---|
XMLNode(java.lang.String XMLText)
Constructor: Parses the specified XML text and generates a list of nodes. |
|
| Method Summary | |
|---|---|
java.lang.String |
contents()
Returns the entire contents of this tag. |
void |
displayParameters()
Prints out the name of this tag and all of its parameters and their values. |
protected static void |
errorMessage(java.lang.String message)
Prints an error message. |
java.lang.String |
get(java.lang.String parameter)
Returns the value of the specified parameter. |
boolean |
hasNext()
Checks if there is another XMLNode after this one. |
java.lang.String |
name()
Returns the name of this tag. |
XMLNode |
next()
Returns the next XMLNode. |
java.util.HashMap<java.lang.String,java.lang.String> |
parameters()
Returns a hashmap containing all parameters and their values. |
protected void |
processTagContents(java.lang.String tagContents)
Processes a tag's contents, extracting the name and each parameter/value pair. |
static void |
setVerbose(boolean val)
Sets whether or not to print out messages while loading (default = false). |
protected static void |
warningMessage(java.lang.String message)
Prints a warning message. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
protected java.lang.String name
protected java.lang.String contents
protected java.util.HashMap<java.lang.String,java.lang.String> parameters
protected XMLNode next
| Constructor Detail |
|---|
public XMLNode(java.lang.String XMLText)
XMLText - String containing the XML.| Method Detail |
|---|
public java.lang.String name()
public java.lang.String contents()
public boolean hasNext()
public XMLNode next()
public java.lang.String get(java.lang.String parameter)
public java.util.HashMap<java.lang.String,java.lang.String> parameters()
public void displayParameters()
protected void processTagContents(java.lang.String tagContents)
tagContents - String containing everything between the XML brackets.public static void setVerbose(boolean val)
val - True to show debug messages.protected static void errorMessage(java.lang.String message)
message - Error message to print.protected static void warningMessage(java.lang.String message)
message - Warning message to print.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||