Package org.axsl.pdf

Examples of org.axsl.pdf.PdfVersion


     * {@inheritDoc}
     */
    public void startOutput() throws OutputException {
        final String pdfVersion = this.getOutputConfiguration().getPdfVersion();
        if (pdfVersion != null) {
            final PdfVersion pdfVersionConstant = PdfVersion.fromString(
                    pdfVersion);
            this.pdfDoc.setVersion(pdfVersionConstant);
        }
        this.pdfDoc.setProducer(getApplicationNameShort() + " "
                + getApplicationVersion());
View Full Code Here

TOP

Related Classes of org.axsl.pdf.PdfVersion

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.