ローカルで発行された結果の取得

ローカル文書生成の結果を取得します。
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);
}

フィードバック