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/LayoutMasterSet.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: LayoutMasterSet.java 1465599 2013-04-08 11:51:52Z vhennebert $ */ package org.apache.fop.fo.pagination; // Java import java.util.Map; 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; /** * Class modelling the <a href="http://www.w3.org/TR/xsl/#fo_layout-master-set"> * <code>fo:layout-master-set</code></a> object. * * This class maintains the set of simple page master and * page sequence masters. * The masters are stored so that the page sequence can obtain * the required page master to create a page. * The page sequence masters can be reset as they hold state * information for a page sequence. */ public class LayoutMasterSet extends FObj { private Map<String, SimplePageMaster> simplePageMasters; private Map<String, PageSequenceMaster> pageSequenceMasters; /** * Create a LayoutMasterSet instance that is a child of the given * parent {@link FONode}. * * @param parent {@link FONode} that is the parent of this object */ public LayoutMasterSet(FONode parent) { super(parent); } /** {@inheritDoc} */ public void bind(PropertyList pList) throws FOPException { // No properties in layout-master-set. } /** {@inheritDoc} */ public void startOfNode() throws FOPException { getRoot().setLayoutMasterSet(this); simplePageMasters = new java.util.HashMap<String, SimplePageMaster>(); pageSequenceMasters = new java.util.HashMap<String, PageSequenceMaster>(); } /** {@inheritDoc} */ public void endOfNode() throws FOPException { if (firstChild == null) { missingChildElementError("(simple-page-master|page-sequence-master)+"); } checkRegionNames(); resolveSubSequenceReferences(); } /** * {@inheritDoc} * <br>XSL/FOP: (simple-page-master|page-sequence-master)+ */ protected void validateChildNode(Locator loc, String nsURI, String localName) throws ValidationException { if (FO_URI.equals(nsURI)) { if (!localName.equals("simple-page-master") && !localName.equals("page-sequence-master")) { invalidChildError(loc, nsURI, localName); } } } /** * Section 7.25.7: check to see that if a region-name is a * duplicate, that it maps to the same fo region-class. * @throws ValidationException if there's a name duplication */ private void checkRegionNames() throws ValidationException { // (user-entered) region-name to default region map. Map<String, String> allRegions = new java.util.HashMap<String, String>(); for (SimplePageMaster simplePageMaster : simplePageMasters.values()) { Map<String, Region> spmRegions = simplePageMaster.getRegions(); for (Region region : spmRegions.values()) { if (allRegions.containsKey(region.getRegionName())) { String defaultRegionName = allRegions.get(region.getRegionName()); if (!defaultRegionName.equals(region.getDefaultRegionName())) { getFOValidationEventProducer().regionNameMappedToMultipleRegionClasses(this, region.getRegionName(), defaultRegionName, region.getDefaultRegionName(), getLocator()); } } allRegions.put(region.getRegionName(), region.getDefaultRegionName()); } } } private void resolveSubSequenceReferences() throws ValidationException { for (PageSequenceMaster psm : pageSequenceMasters.values()) { for (SubSequenceSpecifier subSequenceSpecifier : psm.getSubSequenceSpecifier()) { subSequenceSpecifier.resolveReferences(this); } } } /** * Add a simple page master. * The name is checked to throw an error if already added. * @param sPM simple-page-master to add * @throws ValidationException if there's a problem with name uniqueness */ protected void addSimplePageMaster(SimplePageMaster sPM) throws ValidationException { // check for duplication of master-name String masterName = sPM.getMasterName(); if (existsName(masterName)) { getFOValidationEventProducer().masterNameNotUnique(this, getName(), masterName, sPM.getLocator()); } this.simplePageMasters.put(masterName, sPM); } private boolean existsName(String masterName) { return (simplePageMasters.containsKey(masterName) || pageSequenceMasters.containsKey(masterName)); } /** * Get a simple page master by name. * This is used by the page sequence to get a page master for * creating pages. * @param masterName the name of the page master * @return the requested simple-page-master */ public SimplePageMaster getSimplePageMaster(String masterName) { return simplePageMasters.get(masterName); } /** * Add a page sequence master. * The name is checked to throw an error if already added. * @param masterName name for the master * @param pSM PageSequenceMaster instance * @throws ValidationException if there's a problem with name uniqueness */ protected void addPageSequenceMaster(String masterName, PageSequenceMaster pSM) throws ValidationException { // check against duplication of master-name if (existsName(masterName)) { getFOValidationEventProducer().masterNameNotUnique(this, getName(), masterName, pSM.getLocator()); } this.pageSequenceMasters.put(masterName, pSM); } /** * Get a page sequence master by name. * This is used by the page sequence to get a page master for * creating pages. * @param masterName name of the master * @return the requested PageSequenceMaster instance */ public PageSequenceMaster getPageSequenceMaster(String masterName) { return this.pageSequenceMasters.get(masterName); } /** * Checks whether or not a region name exists in this master set. * @param regionName name of the region * @return true when the region name specified has a region in this LayoutMasterSet */ public boolean regionNameExists(String regionName) { for (SimplePageMaster spm : simplePageMasters.values()) { if (spm.regionNameExists(regionName)) { return true; } } return false; } /** {@inheritDoc} */ public String getLocalName() { return "layout-master-set"; } /** * {@inheritDoc} * @return {@link org.apache.fop.fo.Constants#FO_LAYOUT_MASTER_SET} */ public int getNameId() { return FO_LAYOUT_MASTER_SET; } /** * Returns the default name of the region to which the flow or static-content having * the given flow-name is assigned. * * @param flowName the value of the flow-name property * @return the default region name ("xsl-region-body", "xsl-region-before", etc.) */ public String getDefaultRegionNameFor(String flowName) { for (SimplePageMaster spm : simplePageMasters.values()) { for (Region region : spm.getRegions().values()) { if (region.getRegionName().equals(flowName)) { return region.getDefaultRegionName(); } } } assert flowName.equals("xsl-before-float-separator") || flowName.equals("xsl-footnote-separator"); return flowName; } }
⏎ org/apache/fop/fo/pagination/LayoutMasterSet.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, 22102👍, 0💬
Popular Posts:
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 poi-contrib-3.5.jar? poi-contrib-3.5.jar is one of the JAR files for Apache POI 3.5, which p...
JDK 11 jdk.localedata.jmod is the JMOD file for JDK 11 Localedata module. JDK 11 Locale Data module ...
How to read XML document with XML Schema validation from socket connections with the socket\DelayedI...
How to download and install JDK (Java Development Kit) 8? If you want to write Java applications, yo...