* the action definition output to check
* @return true if this output corresponds to a public destination-bound output
*/
protected boolean hasPublicDestination( IActionOutput contentOutput ) {
String resolvedName = contentOutput.getPublicName();
IActionSequenceOutput publicOutput = getActionDefinition().getDocument().getOutput( resolvedName );
if ( publicOutput == null ) {
return false;
}
return ( publicOutput.getType().equals( ActionSequenceDocument.CONTENT_TYPE )
&& publicOutput.getDestinations().length > 0 );
}