Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
What Is fop.jar in fop-2.7-bin.zip
What Is fop.jar? I got it from the fop-2.7-bin.zip.
✍: FYIcenter.com
fop.jar in fop-2.7-bin.zip is the JAR file for FOP 2.7, which is a print formatter driven by XSL formatting objects (XSL-FO). You can obtain fop.jar from the build folder of the fop-2.7-bin.zip file.
Below is the information about the fop.jar (2.2) file:
JAR File Size and Download Location:
JAR name: fop.jar, fop-2.7.jar Target JDK version: 1.7 File name: fop.jar File size: 4442817 bytes Release date: 20-Jan-2022 Download: Apache FOP Website
Java source code files for fop.jar:
⏎ org/apache/fop/fo/pagination/AbstractPageSequence.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /* $Id: AbstractPageSequence.java 1616416 2014-08-07 06:46:57Z gadams $ */ package org.apache.fop.fo.pagination; import org.apache.fop.apps.FOPException; import org.apache.fop.datatypes.Numeric; import org.apache.fop.fo.FONode; import org.apache.fop.fo.FObj; import org.apache.fop.fo.PropertyList; import org.apache.fop.fo.properties.CommonAccessibility; import org.apache.fop.fo.properties.CommonAccessibilityHolder; /** * Abstract base class for the <a href="http://www.w3.org/TR/xsl/#fo_page-sequence"> * <code>fo:page-sequence</code></a> formatting object and the * <a href="http://xmlgraphics.apache.org/fop/0.95/extensions.html#external-document"> * <code>fox:external-document</code></a> extension object. */ public abstract class AbstractPageSequence extends FObj implements CommonAccessibilityHolder { /** initial page number */ protected Numeric initialPageNumber; /** forced page count */ protected int forcePageCount; private String format; private int letterValue; private char groupingSeparator; private int groupingSize; private Numeric referenceOrientation; private String language; private String country; private String numberConversionFeatures; private CommonAccessibility commonAccessibility; private PageNumberGenerator pageNumberGenerator; /** starting page number */ protected int startingPageNumber; /** * Create an AbstractPageSequence that is a child * of the given parent {@link FONode}. * * @param parent the parent {@link FONode} */ public AbstractPageSequence(FONode parent) { super(parent); } /** {@inheritDoc} */ public void bind(PropertyList pList) throws FOPException { super.bind(pList); initialPageNumber = pList.get(PR_INITIAL_PAGE_NUMBER).getNumeric(); forcePageCount = pList.get(PR_FORCE_PAGE_COUNT).getEnum(); format = pList.get(PR_FORMAT).getString(); letterValue = pList.get(PR_LETTER_VALUE).getEnum(); groupingSeparator = pList.get(PR_GROUPING_SEPARATOR).getCharacter(); groupingSize = pList.get(PR_GROUPING_SIZE).getNumber().intValue(); referenceOrientation = pList.get(PR_REFERENCE_ORIENTATION).getNumeric(); language = pList.get(PR_LANGUAGE).getString(); country = pList.get(PR_COUNTRY).getString(); numberConversionFeatures = pList.get(PR_X_NUMBER_CONVERSION_FEATURES).getString(); commonAccessibility = CommonAccessibility.getInstance(pList); } /** {@inheritDoc} */ public void startOfNode() throws FOPException { this.pageNumberGenerator = new PageNumberGenerator( format, groupingSeparator, groupingSize, letterValue, numberConversionFeatures, language, country); } /** * Initialize the current page number for the start of the page sequence. */ public void initPageNumber() { int pageNumberType = 0; if (initialPageNumber.getEnum() != 0) { // auto | auto-odd | auto-even. startingPageNumber = getRoot().getEndingPageNumberOfPreviousSequence() + 1; pageNumberType = initialPageNumber.getEnum(); if (pageNumberType == EN_AUTO_ODD) { if (startingPageNumber % 2 == 0) { startingPageNumber++; } } else if (pageNumberType == EN_AUTO_EVEN) { if (startingPageNumber % 2 != 0) { startingPageNumber++; } } } else { // <integer> for explicit page number int pageStart = initialPageNumber.getValue(); startingPageNumber = (pageStart > 0) ? pageStart : 1; // spec rule } } /** * Get the starting page number for this page sequence. * * @return the starting page number */ public int getStartingPageNumber() { return startingPageNumber; } /** * Retrieves the string representation of a page number applicable * for this page sequence * @param pageNumber the page number * @return string representation of the page number */ public String makeFormattedPageNumber(int pageNumber) { return pageNumberGenerator.makeFormattedPageNumber(pageNumber); } public CommonAccessibility getCommonAccessibility() { return commonAccessibility; } /** * Public accessor for the ancestor Root. * @return the ancestor Root */ public Root getRoot() { return (Root)this.getParent(); } /** * Get the value of the <code>force-page-count</code> property. * @return the force-page-count value */ public int getForcePageCount() { return forcePageCount; } /** * Get the value of the <code>initial-page-number</code> property. * @return the initial-page-number property value */ public Numeric getInitialPageNumber() { return initialPageNumber; } /** * Get the value of the <code>reference-orientation</code> property. * @return the "reference-orientation" property * @since XSL 1.1 */ public int getReferenceOrientation() { return referenceOrientation.getValue(); } }
⏎ org/apache/fop/fo/pagination/AbstractPageSequence.java
Or download all of them as a single archive file:
File name: fop-2.7-src.zip File size: 3401312 bytes Release date: 2022-01-20 Download
⇒ "fop" Command in fop-2.7-bin.zip
2016-07-07, 57538👍, 0💬
Popular Posts:
JDK 11 jdk.localedata.jmod is the JMOD file for JDK 11 Localedata module. JDK 11 Locale Data module ...
JLayer is a library that decodes/plays/converts MPEG 1/2/2.5 Layer 1/2/3 (i.e. MP3) in real time for...
JDK 11 jdk.jconsole.jmod is the JMOD file for JDK 11 JConsole tool, which can be invoked by the "jco...
What Is jsse.jar (JDK 6) Java Secure Socket Extension? jsse.jar, Java Secure Socket Extension, is Ja...
The JDT project provides the tool plug-ins that implement a Java IDE supporting the development of a...