import org.xml.sax.SAXException;
import org.apache.fop.apps.FOUserAgent;
+import org.apache.fop.apps.FormattingResults;
import org.apache.fop.fo.extensions.ExternalDocument;
import org.apache.fop.fo.flow.BasicLink;
import org.apache.fop.fo.flow.Block;
delegate.endExternalDocument(document);
}
+ @Override
+ public FormattingResults getResults() {
+ return delegate.getResults();
+ }
+
}
import org.xml.sax.SAXException;
import org.apache.fop.apps.FOUserAgent;
+import org.apache.fop.apps.FormattingResults;
import org.apache.fop.fo.extensions.ExternalDocument;
import org.apache.fop.fo.flow.BasicLink;
import org.apache.fop.fo.flow.Block;
public void endExternalDocument(ExternalDocument document) {
}
+ public FormattingResults getResults() {
+ return null;
+ }
+
}
* @return the results of the rendering process.
*/
public FormattingResults getResults() {
- if (getEventHandler() instanceof AreaTreeHandler) {
- return ((AreaTreeHandler) getEventHandler()).getResults();
- } else {
- //No formatting results available for output formats no
- //involving the layout engine.
- return null;
- }
+ return getEventHandler().getResults();
}
/**
documents. Example: the fix of marks layering will be such a case when it's done.
-->
<release version="FOP Trunk" date="TBD">
+ <action context="Code" dev="PH" type="fix">
+ Fix of a bug introduced when merging ImproveAccessibility.
+ </action>
+ <action context="Code" dev="PH" type="add">
+ Improved support for empty flow-name mapping (see bugzilla#50391).
+ </action>
<action context="Code" dev="GA" type="add" fixes-bug="32789, 49008, 49687" importance="high">
Add support for complex scripts, including: full bidi support, support for advanced
typographic tables, advanced support for number conversion.