检索在本地发布的结果

获取本地文档生成的结果。
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);
}

反馈