final int x = Integer.parseInt( segments[ 0 ].trim() );
final int y = Integer.parseInt( segments[ 1 ].trim() );
final int width = Integer.parseInt( segments[ 2 ].trim() );
final int height = Integer.parseInt( segments[ 3 ].trim() );
return new Rectangle( x, y, width, height );
}
catch( NumberFormatException e )
{
// Intentionally ignored.
}