Class ElementContentElementParser
java.lang.Object
com.atlassian.bamboo.configuration.DefaultElementParser
com.atlassian.bamboo.configuration.ElementContentElementParser
- All Implemented Interfaces:
ElementParser
- Direct Known Subclasses:
MimeTypeLoader.ExtensionElementParser
,MimeTypeLoader.MimeTypeElementParser
This simply extracts the content between two xml tags.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
characters
(char[] chars, int offset, int length) Do nothing by default.void
startElement
(Attributes attributes) Do nothing by default.Methods inherited from class com.atlassian.bamboo.configuration.DefaultElementParser
endElement, getInstance
-
Constructor Details
-
ElementContentElementParser
public ElementContentElementParser()
-
-
Method Details
-
startElement
Description copied from class:DefaultElementParser
Do nothing by default. Override to process the start of an element.- Specified by:
startElement
in interfaceElementParser
- Overrides:
startElement
in classDefaultElementParser
- Parameters:
attributes
- The element's attributes
-
characters
public void characters(char[] chars, int offset, int length) Description copied from class:DefaultElementParser
Do nothing by default. Override to process the element textThe Parser will call this method to report each chunk of character data. SAX parsers may return all contiguous character data in a single chunk, or they may split it into several chunks.
- Specified by:
characters
in interfaceElementParser
- Overrides:
characters
in classDefaultElementParser
- Parameters:
chars
- The characters from the XML document.offset
- The start position in the array.length
- The number of characters to read from the array.
-
getElementContent
-