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/PageSequenceMaster.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: PageSequenceMaster.java 1896753 2022-01-06 14:18:11Z ssteiner $ */ package org.apache.fop.fo.pagination; // Java import java.util.Collections; import java.util.List; import org.xml.sax.Locator; import org.apache.fop.apps.FOPException; import org.apache.fop.fo.FONode; import org.apache.fop.fo.FObj; import org.apache.fop.fo.PropertyList; import org.apache.fop.fo.ValidationException; import org.apache.fop.layoutmgr.BlockLevelEventProducer; /** * Class modelling the <a href="http://www.w3.org/TR/xsl/#fo_page-sequence-master"> * <code>fo:page-sequence-master</code></a> object. * * This class handles a list of subsequence specifiers * which are simple or complex references to page-masters. */ public class PageSequenceMaster extends FObj { // The value of properties relevant for fo:page-sequence-master. private String masterName; // End of property values private LayoutMasterSet layoutMasterSet; private List<SubSequenceSpecifier> subSequenceSpecifiers; private SubSequenceSpecifier currentSubSequence; private int currentSubSequenceNumber = -1; private BlockLevelEventProducer blockLevelEventProducer; protected boolean onlyTryInfinite; // The terminology may be confusing. A 'page-sequence-master' consists // of a sequence of what the XSL spec refers to as // 'sub-sequence-specifiers'. These are, in fact, simple or complex // references to page-masters. So the methods use the former // terminology ('sub-sequence-specifiers', or SSS), // but the actual FO's are MasterReferences. /** * Create a PageSequenceMaster instance that is a child of the * given {@link FONode}. * * @param parent {@link FONode} that is the parent of this object * @param blockLevelEventProducer event producer */ public PageSequenceMaster(FONode parent, BlockLevelEventProducer blockLevelEventProducer) { super(parent); this.blockLevelEventProducer = blockLevelEventProducer; } /** {@inheritDoc} */ public void bind(PropertyList pList) throws FOPException { masterName = pList.get(PR_MASTER_NAME).getString(); if (masterName == null || masterName.equals("")) { missingPropertyError("master-name"); } } /** {@inheritDoc} */ public void startOfNode() throws FOPException { subSequenceSpecifiers = new java.util.ArrayList<SubSequenceSpecifier>(); layoutMasterSet = parent.getRoot().getLayoutMasterSet(); layoutMasterSet.addPageSequenceMaster(masterName, this); } /** {@inheritDoc} */ public void endOfNode() throws FOPException { if (firstChild == null) { missingChildElementError("(single-page-master-reference|" + "repeatable-page-master-reference|repeatable-page-master-alternatives)+"); } } /** * {@inheritDoc} * <br>XSL/FOP: (single-page-master-reference|repeatable-page-master-reference| * repeatable-page-master-alternatives)+ */ protected void validateChildNode(Locator loc, String nsURI, String localName) throws ValidationException { if (FO_URI.equals(nsURI)) { if (!"single-page-master-reference".equals(localName) && !"repeatable-page-master-reference".equals(localName) && !"repeatable-page-master-alternatives".equals(localName)) { invalidChildError(loc, nsURI, localName); } } } /** * Adds a new suqsequence specifier to the page sequence master. * @param pageMasterReference the subsequence to add */ protected void addSubsequenceSpecifier(SubSequenceSpecifier pageMasterReference) { subSequenceSpecifiers.add(pageMasterReference); } public LayoutMasterSet getLayoutMasterSet() { return layoutMasterSet; } /** * Returns the next subsequence specifier * @return a subsequence specifier */ private SubSequenceSpecifier getNextSubSequence() { currentSubSequenceNumber++; if (currentSubSequenceNumber >= 0 && currentSubSequenceNumber < subSequenceSpecifiers.size()) { return subSequenceSpecifiers.get(currentSubSequenceNumber); } return null; } List<SubSequenceSpecifier> getSubSequenceSpecifier() { return Collections.unmodifiableList(subSequenceSpecifiers); } /** * Resets the subsequence specifiers subsystem. */ public void reset() { currentSubSequenceNumber = -1; currentSubSequence = null; if (subSequenceSpecifiers != null) { for (SubSequenceSpecifier subSequenceSpecifier : subSequenceSpecifiers) { subSequenceSpecifier.reset(); } } } /** * Used to set the "cursor position" for the page masters to the previous item. * @return true if there is a previous item, false if the current one was the first one. */ public boolean goToPreviousSimplePageMaster() { if (currentSubSequence != null) { boolean success = currentSubSequence.goToPrevious(); if (!success) { if (currentSubSequenceNumber > 0) { currentSubSequenceNumber--; currentSubSequence = subSequenceSpecifiers .get(currentSubSequenceNumber); } else { currentSubSequence = null; } } } return (currentSubSequence != null); } /** @return true if the page-sequence-master has a page-master with page-position="last" */ public boolean hasPagePositionLast() { return (currentSubSequence != null && currentSubSequence.hasPagePositionLast()); } /** @return true if the page-sequence-master has a page-master with page-position="only" */ public boolean hasPagePositionOnly() { return (currentSubSequence != null && currentSubSequence.hasPagePositionOnly()); } /** * Returns the next simple-page-master. * @param isOddPage True if the next page number is odd * @param isFirstPage True if the next page is the first * @param isLastPage True if the next page is the last * @param isBlankPage True if the next page is blank * @param mainFlowName the name of the main flow of the page sequence * @return the requested page master * @throws PageProductionException if there's a problem determining the next page master */ public SimplePageMaster getNextSimplePageMaster(boolean isOddPage, boolean isFirstPage, boolean isLastPage, boolean isBlankPage, String mainFlowName, boolean skipPagePositionOnly) throws PageProductionException { if (onlyTryInfinite && currentSubSequence != null && !currentSubSequence.isInfinite()) { throw new PageProductionException("Limited to infinite"); } if (currentSubSequence == null) { currentSubSequence = getNextSubSequence(); if (currentSubSequence == null) { blockLevelEventProducer.missingSubsequencesInPageSequenceMaster(this, masterName, getLocator()); } if (currentSubSequence.isInfinite() && !currentSubSequence.canProcess(mainFlowName)) { throw new PageProductionException( "The current sub-sequence will not terminate whilst processing then main flow"); } } SimplePageMaster pageMaster = currentSubSequence .getNextPageMaster(isOddPage, isFirstPage, isLastPage, isBlankPage, skipPagePositionOnly); boolean canRecover = true; while (pageMaster == null) { SubSequenceSpecifier nextSubSequence = getNextSubSequence(); if (nextSubSequence == null) { //Sub-sequence exhausted so attempt to reuse it blockLevelEventProducer.pageSequenceMasterExhausted(this, masterName, canRecover & currentSubSequence.isReusable(), getLocator()); currentSubSequence.reset(); if (!currentSubSequence.canProcess(mainFlowName)) { throw new PageProductionException( "The last simple-page-master does not reference the main flow"); } canRecover = false; } else { currentSubSequence = nextSubSequence; } pageMaster = currentSubSequence .getNextPageMaster(isOddPage, isFirstPage, isLastPage, isBlankPage, skipPagePositionOnly); } return pageMaster; } /** {@inheritDoc} */ public String getLocalName() { return "page-sequence-master"; } /** * {@inheritDoc} * @return {@link org.apache.fop.fo.Constants#FO_PAGE_SEQUENCE_MASTER} */ public int getNameId() { return FO_PAGE_SEQUENCE_MASTER; } public SimplePageMaster getLastSimplePageMaster(boolean isOddPage, boolean isFirstPage, boolean isBlank, String flowName) { if (currentSubSequence == null) { currentSubSequence = getNextSubSequence(); if (currentSubSequence == null) { blockLevelEventProducer.missingSubsequencesInPageSequenceMaster(this, masterName, getLocator()); } if (currentSubSequence.isInfinite() && !currentSubSequence.canProcess(flowName)) { throw new PageProductionException( "The current sub-sequence will not terminate whilst processing the main flow"); } } SimplePageMaster pageMaster = currentSubSequence.getLastPageMaster(isOddPage, isFirstPage, isBlank, blockLevelEventProducer); return pageMaster; } }
⏎ org/apache/fop/fo/pagination/PageSequenceMaster.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, 21999👍, 0💬
Popular Posts:
Apache BCEL Source Code Files are inside the Apache BCEL source package file like bcel-6.6.1-src.zip...
How to run "jarsigner" command from JDK tools.jar file? "jarsigner" command allows you to digitally ...
JDK 11 java.sql.rowset.jmod is the JMOD file for JDK 11 SQL Rowset module. JDK 11 SQL Rowset module ...
What Is javamail1_1_3.zip? javamail1_1_3.zip is the binary package of JavaMail API 1.1.3 in ZIP form...
What is the dom\GetElementsByTagName .javaprovided in the Apache Xerces package? I have Apache Xerce...