Package org.axsl.pdf

Examples of org.axsl.pdf.PdfDestination


     * @throws GalleyVisitorException If a destination already exists.
     */
    private void renderDestinations(final Area area) throws GalleyVisitorException {
        final String destinationName = area.destinationName();
        if (destinationName != null) {
            final PdfDestination explicitDest =
                    this.currentPage.createDestination(
                            toPoints(area.crOriginX()),
                            toPoints(area.crOriginY()));
            try {
                explicitDest.registerName(destinationName);
            } catch (final PdfException e) {
                throw new GalleyVisitorException(e);
            }
        }
        if (area.isLinkRoot()) {
View Full Code Here

TOP

Related Classes of org.axsl.pdf.PdfDestination

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.