Class ComponentXpp3Reader
- java.lang.Object
-
- org.apache.maven.plugins.assembly.model.io.xpp3.ComponentXpp3Reader
-
public class ComponentXpp3Reader extends java.lang.Object
Class ComponentXpp3Reader.- Version:
- $Revision$ $Date$
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interface
ComponentXpp3Reader.ContentTransformer
-
Field Summary
Fields Modifier and Type Field Description private boolean
addDefaultEntities
If set the parser will be loaded with all single characters from the XHTML specification.ComponentXpp3Reader.ContentTransformer
contentTransformer
Field contentTransformer.
-
Constructor Summary
Constructors Constructor Description ComponentXpp3Reader()
ComponentXpp3Reader(ComponentXpp3Reader.ContentTransformer contentTransformer)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description private boolean
checkFieldWithDuplicate(org.codehaus.plexus.util.xml.pull.XmlPullParser parser, java.lang.String tagName, java.lang.String alias, java.util.Set<java.lang.String> parsed)
Method checkFieldWithDuplicate.private void
checkUnknownAttribute(org.codehaus.plexus.util.xml.pull.XmlPullParser parser, java.lang.String attribute, java.lang.String tagName, boolean strict)
Method checkUnknownAttribute.private void
checkUnknownElement(org.codehaus.plexus.util.xml.pull.XmlPullParser parser, boolean strict)
Method checkUnknownElement.boolean
getAddDefaultEntities()
Returns the state of the "add default entities" flag.private boolean
getBooleanValue(java.lang.String s, java.lang.String attribute, org.codehaus.plexus.util.xml.pull.XmlPullParser parser)
Method getBooleanValue.private boolean
getBooleanValue(java.lang.String s, java.lang.String attribute, org.codehaus.plexus.util.xml.pull.XmlPullParser parser, java.lang.String defaultValue)
Method getBooleanValue.private byte
getByteValue(java.lang.String s, java.lang.String attribute, org.codehaus.plexus.util.xml.pull.XmlPullParser parser, boolean strict)
Method getByteValue.private char
getCharacterValue(java.lang.String s, java.lang.String attribute, org.codehaus.plexus.util.xml.pull.XmlPullParser parser)
Method getCharacterValue.private java.util.Date
getDateValue(java.lang.String s, java.lang.String attribute, java.lang.String dateFormat, org.codehaus.plexus.util.xml.pull.XmlPullParser parser)
Method getDateValue.private java.util.Date
getDateValue(java.lang.String s, java.lang.String attribute, org.codehaus.plexus.util.xml.pull.XmlPullParser parser)
Method getDateValue.private double
getDoubleValue(java.lang.String s, java.lang.String attribute, org.codehaus.plexus.util.xml.pull.XmlPullParser parser, boolean strict)
Method getDoubleValue.private float
getFloatValue(java.lang.String s, java.lang.String attribute, org.codehaus.plexus.util.xml.pull.XmlPullParser parser, boolean strict)
Method getFloatValue.private int
getIntegerValue(java.lang.String s, java.lang.String attribute, org.codehaus.plexus.util.xml.pull.XmlPullParser parser, boolean strict)
Method getIntegerValue.private long
getLongValue(java.lang.String s, java.lang.String attribute, org.codehaus.plexus.util.xml.pull.XmlPullParser parser, boolean strict)
Method getLongValue.private java.lang.String
getRequiredAttributeValue(java.lang.String s, java.lang.String attribute, org.codehaus.plexus.util.xml.pull.XmlPullParser parser, boolean strict)
Method getRequiredAttributeValue.private short
getShortValue(java.lang.String s, java.lang.String attribute, org.codehaus.plexus.util.xml.pull.XmlPullParser parser, boolean strict)
Method getShortValue.private java.lang.String
getTrimmedValue(java.lang.String s)
Method getTrimmedValue.private java.lang.String
interpolatedTrimmed(java.lang.String value, java.lang.String context)
Method interpolatedTrimmed.private int
nextTag(org.codehaus.plexus.util.xml.pull.XmlPullParser parser)
Method nextTag.private Component
parseComponent(org.codehaus.plexus.util.xml.pull.XmlPullParser parser, boolean strict)
Method parseComponent.private ContainerDescriptorHandlerConfig
parseContainerDescriptorHandlerConfig(org.codehaus.plexus.util.xml.pull.XmlPullParser parser, boolean strict)
Method parseContainerDescriptorHandlerConfig.private DependencySet
parseDependencySet(org.codehaus.plexus.util.xml.pull.XmlPullParser parser, boolean strict)
Method parseDependencySet.private FileItem
parseFileItem(org.codehaus.plexus.util.xml.pull.XmlPullParser parser, boolean strict)
Method parseFileItem.private FileSet
parseFileSet(org.codehaus.plexus.util.xml.pull.XmlPullParser parser, boolean strict)
Method parseFileSet.private ModuleBinaries
parseModuleBinaries(org.codehaus.plexus.util.xml.pull.XmlPullParser parser, boolean strict)
Method parseModuleBinaries.private ModuleSet
parseModuleSet(org.codehaus.plexus.util.xml.pull.XmlPullParser parser, boolean strict)
Method parseModuleSet.private ModuleSources
parseModuleSources(org.codehaus.plexus.util.xml.pull.XmlPullParser parser, boolean strict)
Method parseModuleSources.private UnpackOptions
parseUnpackOptions(org.codehaus.plexus.util.xml.pull.XmlPullParser parser, boolean strict)
Method parseUnpackOptions.Component
read(java.io.InputStream in)
Method read.Component
read(java.io.InputStream in, boolean strict)
Method read.Component
read(java.io.Reader reader)
Component
read(java.io.Reader reader, boolean strict)
Component
read(org.codehaus.plexus.util.xml.pull.XmlPullParser parser, boolean strict)
Method read.void
setAddDefaultEntities(boolean addDefaultEntities)
Sets the state of the "add default entities" flag.
-
-
-
Field Detail
-
addDefaultEntities
private boolean addDefaultEntities
If set the parser will be loaded with all single characters from the XHTML specification. The entities used:- http://www.w3.org/TR/xhtml1/DTD/xhtml-lat1.ent
- http://www.w3.org/TR/xhtml1/DTD/xhtml-special.ent
- http://www.w3.org/TR/xhtml1/DTD/xhtml-symbol.ent
-
contentTransformer
public final ComponentXpp3Reader.ContentTransformer contentTransformer
Field contentTransformer.
-
-
Constructor Detail
-
ComponentXpp3Reader
public ComponentXpp3Reader()
-
ComponentXpp3Reader
public ComponentXpp3Reader(ComponentXpp3Reader.ContentTransformer contentTransformer)
-
-
Method Detail
-
checkFieldWithDuplicate
private boolean checkFieldWithDuplicate(org.codehaus.plexus.util.xml.pull.XmlPullParser parser, java.lang.String tagName, java.lang.String alias, java.util.Set<java.lang.String> parsed) throws org.codehaus.plexus.util.xml.pull.XmlPullParserException
Method checkFieldWithDuplicate.- Parameters:
parser
- a parser object.parsed
- a parsed object.alias
- a alias object.tagName
- a tagName object.- Returns:
- boolean
- Throws:
org.codehaus.plexus.util.xml.pull.XmlPullParserException
- XmlPullParserException if any.
-
checkUnknownAttribute
private void checkUnknownAttribute(org.codehaus.plexus.util.xml.pull.XmlPullParser parser, java.lang.String attribute, java.lang.String tagName, boolean strict) throws org.codehaus.plexus.util.xml.pull.XmlPullParserException, java.io.IOException
Method checkUnknownAttribute.- Parameters:
parser
- a parser object.strict
- a strict object.tagName
- a tagName object.attribute
- a attribute object.- Throws:
org.codehaus.plexus.util.xml.pull.XmlPullParserException
- XmlPullParserException if any.java.io.IOException
- IOException if any.
-
checkUnknownElement
private void checkUnknownElement(org.codehaus.plexus.util.xml.pull.XmlPullParser parser, boolean strict) throws org.codehaus.plexus.util.xml.pull.XmlPullParserException, java.io.IOException
Method checkUnknownElement.- Parameters:
parser
- a parser object.strict
- a strict object.- Throws:
org.codehaus.plexus.util.xml.pull.XmlPullParserException
- XmlPullParserException if any.java.io.IOException
- IOException if any.
-
getAddDefaultEntities
public boolean getAddDefaultEntities()
Returns the state of the "add default entities" flag.- Returns:
- boolean
-
getBooleanValue
private boolean getBooleanValue(java.lang.String s, java.lang.String attribute, org.codehaus.plexus.util.xml.pull.XmlPullParser parser) throws org.codehaus.plexus.util.xml.pull.XmlPullParserException
Method getBooleanValue.- Parameters:
s
- a s object.parser
- a parser object.attribute
- a attribute object.- Returns:
- boolean
- Throws:
org.codehaus.plexus.util.xml.pull.XmlPullParserException
- XmlPullParserException if any.
-
getBooleanValue
private boolean getBooleanValue(java.lang.String s, java.lang.String attribute, org.codehaus.plexus.util.xml.pull.XmlPullParser parser, java.lang.String defaultValue) throws org.codehaus.plexus.util.xml.pull.XmlPullParserException
Method getBooleanValue.- Parameters:
s
- a s object.defaultValue
- a defaultValue object.parser
- a parser object.attribute
- a attribute object.- Returns:
- boolean
- Throws:
org.codehaus.plexus.util.xml.pull.XmlPullParserException
- XmlPullParserException if any.
-
getByteValue
private byte getByteValue(java.lang.String s, java.lang.String attribute, org.codehaus.plexus.util.xml.pull.XmlPullParser parser, boolean strict) throws org.codehaus.plexus.util.xml.pull.XmlPullParserException
Method getByteValue.- Parameters:
s
- a s object.strict
- a strict object.parser
- a parser object.attribute
- a attribute object.- Returns:
- byte
- Throws:
org.codehaus.plexus.util.xml.pull.XmlPullParserException
- XmlPullParserException if any.
-
getCharacterValue
private char getCharacterValue(java.lang.String s, java.lang.String attribute, org.codehaus.plexus.util.xml.pull.XmlPullParser parser) throws org.codehaus.plexus.util.xml.pull.XmlPullParserException
Method getCharacterValue.- Parameters:
s
- a s object.parser
- a parser object.attribute
- a attribute object.- Returns:
- char
- Throws:
org.codehaus.plexus.util.xml.pull.XmlPullParserException
- XmlPullParserException if any.
-
getDateValue
private java.util.Date getDateValue(java.lang.String s, java.lang.String attribute, org.codehaus.plexus.util.xml.pull.XmlPullParser parser) throws org.codehaus.plexus.util.xml.pull.XmlPullParserException
Method getDateValue.- Parameters:
s
- a s object.parser
- a parser object.attribute
- a attribute object.- Returns:
- Date
- Throws:
org.codehaus.plexus.util.xml.pull.XmlPullParserException
- XmlPullParserException if any.
-
getDateValue
private java.util.Date getDateValue(java.lang.String s, java.lang.String attribute, java.lang.String dateFormat, org.codehaus.plexus.util.xml.pull.XmlPullParser parser) throws org.codehaus.plexus.util.xml.pull.XmlPullParserException
Method getDateValue.- Parameters:
s
- a s object.parser
- a parser object.dateFormat
- a dateFormat object.attribute
- a attribute object.- Returns:
- Date
- Throws:
org.codehaus.plexus.util.xml.pull.XmlPullParserException
- XmlPullParserException if any.
-
getDoubleValue
private double getDoubleValue(java.lang.String s, java.lang.String attribute, org.codehaus.plexus.util.xml.pull.XmlPullParser parser, boolean strict) throws org.codehaus.plexus.util.xml.pull.XmlPullParserException
Method getDoubleValue.- Parameters:
s
- a s object.strict
- a strict object.parser
- a parser object.attribute
- a attribute object.- Returns:
- double
- Throws:
org.codehaus.plexus.util.xml.pull.XmlPullParserException
- XmlPullParserException if any.
-
getFloatValue
private float getFloatValue(java.lang.String s, java.lang.String attribute, org.codehaus.plexus.util.xml.pull.XmlPullParser parser, boolean strict) throws org.codehaus.plexus.util.xml.pull.XmlPullParserException
Method getFloatValue.- Parameters:
s
- a s object.strict
- a strict object.parser
- a parser object.attribute
- a attribute object.- Returns:
- float
- Throws:
org.codehaus.plexus.util.xml.pull.XmlPullParserException
- XmlPullParserException if any.
-
getIntegerValue
private int getIntegerValue(java.lang.String s, java.lang.String attribute, org.codehaus.plexus.util.xml.pull.XmlPullParser parser, boolean strict) throws org.codehaus.plexus.util.xml.pull.XmlPullParserException
Method getIntegerValue.- Parameters:
s
- a s object.strict
- a strict object.parser
- a parser object.attribute
- a attribute object.- Returns:
- int
- Throws:
org.codehaus.plexus.util.xml.pull.XmlPullParserException
- XmlPullParserException if any.
-
getLongValue
private long getLongValue(java.lang.String s, java.lang.String attribute, org.codehaus.plexus.util.xml.pull.XmlPullParser parser, boolean strict) throws org.codehaus.plexus.util.xml.pull.XmlPullParserException
Method getLongValue.- Parameters:
s
- a s object.strict
- a strict object.parser
- a parser object.attribute
- a attribute object.- Returns:
- long
- Throws:
org.codehaus.plexus.util.xml.pull.XmlPullParserException
- XmlPullParserException if any.
-
getRequiredAttributeValue
private java.lang.String getRequiredAttributeValue(java.lang.String s, java.lang.String attribute, org.codehaus.plexus.util.xml.pull.XmlPullParser parser, boolean strict) throws org.codehaus.plexus.util.xml.pull.XmlPullParserException
Method getRequiredAttributeValue.- Parameters:
s
- a s object.strict
- a strict object.parser
- a parser object.attribute
- a attribute object.- Returns:
- String
- Throws:
org.codehaus.plexus.util.xml.pull.XmlPullParserException
- XmlPullParserException if any.
-
getShortValue
private short getShortValue(java.lang.String s, java.lang.String attribute, org.codehaus.plexus.util.xml.pull.XmlPullParser parser, boolean strict) throws org.codehaus.plexus.util.xml.pull.XmlPullParserException
Method getShortValue.- Parameters:
s
- a s object.strict
- a strict object.parser
- a parser object.attribute
- a attribute object.- Returns:
- short
- Throws:
org.codehaus.plexus.util.xml.pull.XmlPullParserException
- XmlPullParserException if any.
-
getTrimmedValue
private java.lang.String getTrimmedValue(java.lang.String s)
Method getTrimmedValue.- Parameters:
s
- a s object.- Returns:
- String
-
interpolatedTrimmed
private java.lang.String interpolatedTrimmed(java.lang.String value, java.lang.String context)
Method interpolatedTrimmed.- Parameters:
value
- a value object.context
- a context object.- Returns:
- String
-
nextTag
private int nextTag(org.codehaus.plexus.util.xml.pull.XmlPullParser parser) throws java.io.IOException, org.codehaus.plexus.util.xml.pull.XmlPullParserException
Method nextTag.- Parameters:
parser
- a parser object.- Returns:
- int
- Throws:
java.io.IOException
- IOException if any.org.codehaus.plexus.util.xml.pull.XmlPullParserException
- XmlPullParserException if any.
-
read
public Component read(org.codehaus.plexus.util.xml.pull.XmlPullParser parser, boolean strict) throws java.io.IOException, org.codehaus.plexus.util.xml.pull.XmlPullParserException
Method read.- Parameters:
parser
- a parser object.strict
- a strict object.- Returns:
- Component
- Throws:
java.io.IOException
- IOException if any.org.codehaus.plexus.util.xml.pull.XmlPullParserException
- XmlPullParserException if any.
-
read
public Component read(java.io.Reader reader, boolean strict) throws java.io.IOException, org.codehaus.plexus.util.xml.pull.XmlPullParserException
- Parameters:
reader
- a reader object.strict
- a strict object.- Returns:
- Component
- Throws:
java.io.IOException
- IOException if any.org.codehaus.plexus.util.xml.pull.XmlPullParserException
- XmlPullParserException if any.- See Also:
XmlStreamReader
-
read
public Component read(java.io.Reader reader) throws java.io.IOException, org.codehaus.plexus.util.xml.pull.XmlPullParserException
- Parameters:
reader
- a reader object.- Returns:
- Component
- Throws:
java.io.IOException
- IOException if any.org.codehaus.plexus.util.xml.pull.XmlPullParserException
- XmlPullParserException if any.- See Also:
XmlStreamReader
-
read
public Component read(java.io.InputStream in, boolean strict) throws java.io.IOException, org.codehaus.plexus.util.xml.pull.XmlPullParserException
Method read.- Parameters:
in
- a in object.strict
- a strict object.- Returns:
- Component
- Throws:
java.io.IOException
- IOException if any.org.codehaus.plexus.util.xml.pull.XmlPullParserException
- XmlPullParserException if any.
-
read
public Component read(java.io.InputStream in) throws java.io.IOException, org.codehaus.plexus.util.xml.pull.XmlPullParserException
Method read.- Parameters:
in
- a in object.- Returns:
- Component
- Throws:
java.io.IOException
- IOException if any.org.codehaus.plexus.util.xml.pull.XmlPullParserException
- XmlPullParserException if any.
-
parseComponent
private Component parseComponent(org.codehaus.plexus.util.xml.pull.XmlPullParser parser, boolean strict) throws java.io.IOException, org.codehaus.plexus.util.xml.pull.XmlPullParserException
Method parseComponent.- Parameters:
parser
- a parser object.strict
- a strict object.- Returns:
- Component
- Throws:
java.io.IOException
- IOException if any.org.codehaus.plexus.util.xml.pull.XmlPullParserException
- XmlPullParserException if any.
-
parseContainerDescriptorHandlerConfig
private ContainerDescriptorHandlerConfig parseContainerDescriptorHandlerConfig(org.codehaus.plexus.util.xml.pull.XmlPullParser parser, boolean strict) throws java.io.IOException, org.codehaus.plexus.util.xml.pull.XmlPullParserException
Method parseContainerDescriptorHandlerConfig.- Parameters:
parser
- a parser object.strict
- a strict object.- Returns:
- ContainerDescriptorHandlerConfig
- Throws:
java.io.IOException
- IOException if any.org.codehaus.plexus.util.xml.pull.XmlPullParserException
- XmlPullParserException if any.
-
parseDependencySet
private DependencySet parseDependencySet(org.codehaus.plexus.util.xml.pull.XmlPullParser parser, boolean strict) throws java.io.IOException, org.codehaus.plexus.util.xml.pull.XmlPullParserException
Method parseDependencySet.- Parameters:
parser
- a parser object.strict
- a strict object.- Returns:
- DependencySet
- Throws:
java.io.IOException
- IOException if any.org.codehaus.plexus.util.xml.pull.XmlPullParserException
- XmlPullParserException if any.
-
parseFileItem
private FileItem parseFileItem(org.codehaus.plexus.util.xml.pull.XmlPullParser parser, boolean strict) throws java.io.IOException, org.codehaus.plexus.util.xml.pull.XmlPullParserException
Method parseFileItem.- Parameters:
parser
- a parser object.strict
- a strict object.- Returns:
- FileItem
- Throws:
java.io.IOException
- IOException if any.org.codehaus.plexus.util.xml.pull.XmlPullParserException
- XmlPullParserException if any.
-
parseFileSet
private FileSet parseFileSet(org.codehaus.plexus.util.xml.pull.XmlPullParser parser, boolean strict) throws java.io.IOException, org.codehaus.plexus.util.xml.pull.XmlPullParserException
Method parseFileSet.- Parameters:
parser
- a parser object.strict
- a strict object.- Returns:
- FileSet
- Throws:
java.io.IOException
- IOException if any.org.codehaus.plexus.util.xml.pull.XmlPullParserException
- XmlPullParserException if any.
-
parseModuleBinaries
private ModuleBinaries parseModuleBinaries(org.codehaus.plexus.util.xml.pull.XmlPullParser parser, boolean strict) throws java.io.IOException, org.codehaus.plexus.util.xml.pull.XmlPullParserException
Method parseModuleBinaries.- Parameters:
parser
- a parser object.strict
- a strict object.- Returns:
- ModuleBinaries
- Throws:
java.io.IOException
- IOException if any.org.codehaus.plexus.util.xml.pull.XmlPullParserException
- XmlPullParserException if any.
-
parseModuleSet
private ModuleSet parseModuleSet(org.codehaus.plexus.util.xml.pull.XmlPullParser parser, boolean strict) throws java.io.IOException, org.codehaus.plexus.util.xml.pull.XmlPullParserException
Method parseModuleSet.- Parameters:
parser
- a parser object.strict
- a strict object.- Returns:
- ModuleSet
- Throws:
java.io.IOException
- IOException if any.org.codehaus.plexus.util.xml.pull.XmlPullParserException
- XmlPullParserException if any.
-
parseModuleSources
private ModuleSources parseModuleSources(org.codehaus.plexus.util.xml.pull.XmlPullParser parser, boolean strict) throws java.io.IOException, org.codehaus.plexus.util.xml.pull.XmlPullParserException
Method parseModuleSources.- Parameters:
parser
- a parser object.strict
- a strict object.- Returns:
- ModuleSources
- Throws:
java.io.IOException
- IOException if any.org.codehaus.plexus.util.xml.pull.XmlPullParserException
- XmlPullParserException if any.
-
parseUnpackOptions
private UnpackOptions parseUnpackOptions(org.codehaus.plexus.util.xml.pull.XmlPullParser parser, boolean strict) throws java.io.IOException, org.codehaus.plexus.util.xml.pull.XmlPullParserException
Method parseUnpackOptions.- Parameters:
parser
- a parser object.strict
- a strict object.- Returns:
- UnpackOptions
- Throws:
java.io.IOException
- IOException if any.org.codehaus.plexus.util.xml.pull.XmlPullParserException
- XmlPullParserException if any.
-
setAddDefaultEntities
public void setAddDefaultEntities(boolean addDefaultEntities)
Sets the state of the "add default entities" flag.- Parameters:
addDefaultEntities
- a addDefaultEntities object.
-
-