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/fonts/SimpleSingleByteEncoding.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: SimpleSingleByteEncoding.java 1761019 2016-09-16 10:43:45Z ssteiner $ */ package org.apache.fop.fonts; import java.util.ArrayList; import java.util.Arrays; import java.util.HashMap; import java.util.List; import java.util.Map; import org.apache.xmlgraphics.fonts.Glyphs; import org.apache.fop.util.CharUtilities; /** * A simple implementation of the OneByteEncoding mostly used for encodings that are constructed * on-the-fly. */ public class SimpleSingleByteEncoding implements SingleByteEncoding { private final String name; private final List<NamedCharacter> mapping = new ArrayList<NamedCharacter>(); private final Map<Character, Character> charMap = new HashMap<Character, Character>(); /** * Main constructor. * @param name the encoding's name */ public SimpleSingleByteEncoding(String name) { this.name = name; } /** {@inheritDoc} */ public String getName() { return this.name; } /** {@inheritDoc} */ public char mapChar(char c) { Character nc = charMap.get(c); if (nc != null) { return nc; } return NOT_FOUND_CODE_POINT; } /** {@inheritDoc} */ public String[] getCharNameMap() { String[] map = new String[getSize()]; Arrays.fill(map, Glyphs.NOTDEF); for (int i = getFirstChar(); i <= getLastChar(); i++) { NamedCharacter ch = this.mapping.get(i - 1); map[i] = ch.getName(); } return map; } /** * Returns the index of the first defined character. * @return the index of the first defined character (always 1 for this class) */ public int getFirstChar() { return 1; } /** * Returns the index of the last defined character. * @return the index of the last defined character */ public int getLastChar() { return this.mapping.size(); } /** * Returns the number of characters defined by this encoding. * @return the number of characters */ public int getSize() { return this.mapping.size() + 1; } /** * Indicates whether the encoding is full (with 256 code points). * @return true if the encoding is full */ public boolean isFull() { return (getSize() == 256); } /** * Adds a new character to the encoding. * @param ch the named character * @return the code point assigned to the character */ public char addCharacter(NamedCharacter ch) { if (!ch.hasSingleUnicodeValue()) { throw new IllegalArgumentException("Only NamedCharacters with a single Unicode value" + " are currently supported!"); } if (isFull()) { throw new IllegalStateException("Encoding is full!"); } char newSlot = (char)(getLastChar() + 1); this.mapping.add(ch); this.charMap.put(ch.getSingleUnicodeValue(), newSlot); return newSlot; } /** * Returns the named character at a given code point in the encoding. * @param codePoint the code point of the character * @return the NamedCharacter (or null if no character is at this position) */ public NamedCharacter getCharacterForIndex(int codePoint) { if (codePoint < 0 || codePoint > 255) { throw new IllegalArgumentException("codePoint must be between 0 and 255"); } if (codePoint <= getLastChar()) { return this.mapping.get(codePoint - 1); } else { return null; } } /** {@inheritDoc} */ public char[] getUnicodeCharMap() { char[] map = new char[getLastChar() + 1]; for (int i = 0; i < getFirstChar(); i++) { map[i] = CharUtilities.NOT_A_CHARACTER; } for (int i = getFirstChar(); i <= getLastChar(); i++) { map[i] = getCharacterForIndex(i).getSingleUnicodeValue(); } return map; } /** {@inheritDoc} */ @Override public String toString() { return getName() + " (" + getSize() + " chars)"; } }
⏎ org/apache/fop/fonts/SimpleSingleByteEncoding.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, 22153👍, 0💬
Popular Posts:
What Is ojdbc8.jar for Oracle 12c R2? ojdbc8.jar for Oracle 12c R2 is the JAR files of ojdbc.jar, JD...
Apache Log4j Core Implementation provides the functional components of the logging system. Users are...
How to run "javac" command from JDK tools.jar file? "javac" is the Java compiler command that allows...
JDK 11 java.base.jmod is the JMOD file for JDK 11 Base module. JDK 11 Base module compiled class fil...
Jetty provides an HTTP server, HTTP client, and javax.servlet container. These components are open s...