Retrieving results published locally

Get the results of your local document generation.
for( RPEResult result : localDocgen.getResults())
{
	String type = PropertyUtils.getPropertyRawValue( result.getProperty(RPEConfigConstants.PROPERTY_TYPE), "");  //$NON-NLS-1$
	String location = PropertyUtils.getPropertyRawValue( result.getProperty(RPEConfigConstants.PROPERTY_PATH), "");  //$NON-NLS-1$
	System.out.println( type + ": " + path);
}

Feedback