*/
private BuildBase parseBuildBase( XmlPullParser parser, boolean strict, InputSource source )
throws IOException, XmlPullParserException
{
String tagName = parser.getName();
BuildBase buildBase = new BuildBase();
InputLocation _location;
_location = new InputLocation( parser.getLineNumber(), parser.getColumnNumber(), source );
buildBase.setLocation( "", _location );
for ( int i = parser.getAttributeCount() - 1; i >= 0; i-- )
{
String name = parser.getAttributeName( i );
String value = parser.getAttributeValue( i );
if ( name.indexOf( ':' ) >= 0 )
{
// just ignore attributes with non-default namespace (for example: xmlns:xsi)
}
else
{
checkUnknownAttribute( parser, name, tagName, strict );
}
}
java.util.Set parsed = new java.util.HashSet();
while ( ( strict ? parser.nextTag() : nextTag( parser ) ) == XmlPullParser.START_TAG )
{
if ( checkFieldWithDuplicate( parser, "defaultGoal", null, parsed ) )
{
_location = new InputLocation( parser.getLineNumber(), parser.getColumnNumber(), source );
buildBase.setLocation( "defaultGoal", _location );
buildBase.setDefaultGoal( getTrimmedValue( parser.nextText() ) );
}
else if ( checkFieldWithDuplicate( parser, "resources", null, parsed ) )
{
java.util.List resources = new java.util.ArrayList/*<Resource>*/();
buildBase.setResources( resources );
while ( parser.nextTag() == XmlPullParser.START_TAG )
{
if ( "resource".equals( parser.getName() ) )
{
resources.add( parseResource( parser, strict, source ) );
}
else
{
checkUnknownElement( parser, strict );
}
}
}
else if ( checkFieldWithDuplicate( parser, "testResources", null, parsed ) )
{
java.util.List testResources = new java.util.ArrayList/*<Resource>*/();
buildBase.setTestResources( testResources );
while ( parser.nextTag() == XmlPullParser.START_TAG )
{
if ( "testResource".equals( parser.getName() ) )
{
testResources.add( parseResource( parser, strict, source ) );
}
else
{
checkUnknownElement( parser, strict );
}
}
}
else if ( checkFieldWithDuplicate( parser, "directory", null, parsed ) )
{
_location = new InputLocation( parser.getLineNumber(), parser.getColumnNumber(), source );
buildBase.setLocation( "directory", _location );
buildBase.setDirectory( getTrimmedValue( parser.nextText() ) );
}
else if ( checkFieldWithDuplicate( parser, "finalName", null, parsed ) )
{
_location = new InputLocation( parser.getLineNumber(), parser.getColumnNumber(), source );
buildBase.setLocation( "finalName", _location );
buildBase.setFinalName( getTrimmedValue( parser.nextText() ) );
}
else if ( checkFieldWithDuplicate( parser, "filters", null, parsed ) )
{
java.util.List filters = new java.util.ArrayList/*<String>*/();
buildBase.setFilters( filters );
InputLocation _locations;
_locations = new InputLocation( parser.getLineNumber(), parser.getColumnNumber(), source );
buildBase.setLocation( "filters", _locations );
while ( parser.nextTag() == XmlPullParser.START_TAG )
{
if ( "filter".equals( parser.getName() ) )
{
_location = new InputLocation( parser.getLineNumber(), parser.getColumnNumber(), source );
_locations.setLocation( Integer.valueOf( filters.size() ), _location );
filters.add( getTrimmedValue( parser.nextText() ) );
}
else
{
checkUnknownElement( parser, strict );
}
}
}
else if ( checkFieldWithDuplicate( parser, "pluginManagement", null, parsed ) )
{
buildBase.setPluginManagement( parsePluginManagement( parser, strict, source ) );
}
else if ( checkFieldWithDuplicate( parser, "plugins", null, parsed ) )
{
java.util.List plugins = new java.util.ArrayList/*<Plugin>*/();
buildBase.setPlugins( plugins );
while ( parser.nextTag() == XmlPullParser.START_TAG )
{
if ( "plugin".equals( parser.getName() ) )
{
plugins.add( parsePlugin( parser, strict, source ) );