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/apps/FopFactoryConfig.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$ */ package org.apache.fop.apps; import java.net.URI; import java.util.Map; import java.util.Set; import org.apache.xmlgraphics.image.loader.ImageManager; import org.apache.xmlgraphics.image.loader.impl.AbstractImageSessionContext.FallbackResolver; import org.apache.xmlgraphics.io.ResourceResolver; import org.apache.fop.apps.io.InternalResourceResolver; import org.apache.fop.configuration.Configuration; import org.apache.fop.fonts.FontManager; import org.apache.fop.layoutmgr.LayoutManagerMaker; /** * The configuration data for a {@link FopFactory} instance. */ // TODO: Make this interface and any implementations of this interface package private. Though // they are used by classes that are considered the public API, this object doesn't need to be a // part of the API. Why would a user care how the internal objects are passed around? They shouldn't. public interface FopFactoryConfig { /** Defines if FOP should use an alternative rule to determine text indents */ boolean DEFAULT_BREAK_INDENT_INHERITANCE = false; /** Defines if FOP should validate the user config strictly */ boolean DEFAULT_STRICT_USERCONFIG_VALIDATION = true; /** Defines if FOP should use strict validation for FO and user config */ boolean DEFAULT_STRICT_FO_VALIDATION = true; /** Defines the default page-width */ String DEFAULT_PAGE_WIDTH = "8.26in"; /** Defines the default page-height */ String DEFAULT_PAGE_HEIGHT = "11in"; /** Defines the default source resolution (72dpi) for FOP */ float DEFAULT_SOURCE_RESOLUTION = 72.0f; //dpi /** Defines the default target resolution (72dpi) for FOP */ float DEFAULT_TARGET_RESOLUTION = 72.0f; //dpi /** * Whether accessibility features are switched on. * * @return true if accessibility features have been requested */ boolean isAccessibilityEnabled(); boolean isKeepEmptyTags(); /** * Returns the overriding LayoutManagerMaker instance, if any. * @return the overriding LayoutManagerMaker or null */ LayoutManagerMaker getLayoutManagerMakerOverride(); /** * The URI resolver used through-out FOP for controlling all file access. * * @return the URI resolver */ ResourceResolver getResourceResolver(); /** * The base URI from which URIs are resolved against. * * @return the base URI */ URI getBaseURI(); /** * Returns whether FOP is strictly validating input XSL * @return true of strict validation turned on, false otherwise */ boolean validateStrictly(); /** * Is the user configuration to be validated? * @return if the user configuration should be validated */ boolean validateUserConfigStrictly(); /** * @return true if the indent inheritance should be broken when crossing reference area * boundaries (for more info, see the javadoc for the relative member variable) */ boolean isBreakIndentInheritanceOnReferenceAreaBoundary(); /** @return the resolution for resolution-dependent input */ float getSourceResolution(); /** @return the resolution for resolution-dependent output */ float getTargetResolution(); /** * Gets the default page-height to use as fallback, * in case page-height="auto" * * @return the page-height, as a String */ String getPageHeight(); /** * Gets the default page-width to use as fallback, * in case page-width="auto" * * @return the page-width, as a String */ String getPageWidth(); /** @return the set of namespaces that are ignored by FOP */ Set<String> getIgnoredNamespaces(); /** * Indicates whether a namespace URI is on the ignored list. * @param namespace the namespace URI * @return true if the namespace is ignored by FOP */ boolean isNamespaceIgnored(String namespace); /** * Returns the Avalon {@link Configuration} object. * * @return the Avalon config object */ Configuration getUserConfig(); /** @see org.apache.fop.render.RendererFactory#isRendererPreferred() */ boolean preferRenderer(); /** * Returns the font manager. * @return the font manager */ FontManager getFontManager(); /** * Returns the image manager. * @return the image manager */ ImageManager getImageManager(); boolean isComplexScriptFeaturesEnabled(); boolean isTableBorderOverpaint(); /** @return the hyphenation pattern names */ Map<String, String> getHyphenationPatternNames(); InternalResourceResolver getHyphenationResourceResolver(); /** * Controls the mechanisms that are used in the event that {@link javax.xml.transform.Source} * used for resources couldn't be read. * @return the fallback resolver */ FallbackResolver getFallbackResolver(); }
⏎ org/apache/fop/apps/FopFactoryConfig.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, 73063👍, 0💬
Popular Posts:
JUnit Source Code Files are provided in the source package file, junit-4.13.2-sources.jar .You can b...
GJT (Giant Java Tree) implementation of XML Pull Parser. JAR File Size and Download Location: File n...
JDK 17 jdk.localedata.jmod is the JMOD file for JDK 17 Localedata module. JDK 17 Locale Data module ...
Jetty provides an HTTP server, HTTP client, and javax.servlet container. These components are open s...
Jaxen, Release 1.1.1, is an open source XPath library written in Java. It is adaptable to many diffe...