this.incompleteActions.put(action.getID(), pdfGoTo);
}
return pdfGoTo;
}
} else if (action instanceof URIAction) {
URIAction u = (URIAction)action;
assert u.isComplete();
PDFFactory factory = getPDFDoc().getFactory();
pdfAction = factory.getExternalAction(u.getURI(), u.isNewWindow());
if (!pdfAction.hasObjectNumber()) {
//Some PDF actions a pooled
getPDFDoc().registerObject(pdfAction);
}
this.completeActions.put(action.getID(), pdfAction);