*/
private void readPropertiesEntry( String entryName ) throws ParseException
{
if ( entryName == null )
{
throw new ParseException( "Missing entry attribute of properties element", null );
}
URL entryURL = m_bundle.getEntry( entryName );
if ( entryURL == null )
{
throw new ParseException( "Missing bundle entry " + entryName, null );
}
Properties props = new Properties();
InputStream entryStream = null;
try
{
entryStream = entryURL.openStream();
props.load( entryStream );
}
catch ( IOException ioe )
{
throw new ParseException( "Failed to read properties entry " + entryName, ioe );
}
finally
{
if ( entryStream != null )
{