if( m_aParams != null )
{
Iterator<XSLTParameter> aIter = m_aParams.iterator();
while( aIter.hasNext() )
{
XSLTParameter aParam = aIter.next();
if( aParam.getName() == null )
throw new BuildException( "parameter name attribute must be set", getLocation() );
if( aParam.getValue() == null )
throw new BuildException( "parameter expression attribute must be set", getLocation() );
}
}
String aFactory = null;