{
source = new URI(sourceStr);
}
catch (final URISyntaxException e)
{
throw new ParserException(sourceStr + " is not a valid URI: " + e,
e);
}
final int count = Integer.valueOf(attributes.getValue("count"));
this.accessor = new Accessor(source, count);
final String offset = attributes.getValue("offset");