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/afp/AFPLineDataInfo.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: AFPLineDataInfo.java 1610839 2014-07-15 20:25:58Z vhennebert $ */ package org.apache.fop.afp; import java.awt.Color; /** Line data information */ public class AFPLineDataInfo { /** the x1 coordinate */ private int x1; /** the y1 coordinate */ private int y1; /** the x2 coordinate */ private int x2; /** the y2 coordinate */ private int y2; /** the thickness */ private int thickness; /** the painting color */ private Color color; /** the rotation */ private int rotation; /** * Default constructor */ public AFPLineDataInfo() { } /** * Copy constructor. * @param template the object to copy */ public AFPLineDataInfo(AFPLineDataInfo template) { this.x1 = template.x1; this.y1 = template.y1; this.x2 = template.x2; this.y2 = template.y2; this.thickness = template.thickness; this.color = template.color; this.rotation = template.rotation; } /** * Returns the X1 coordinate * * @return the X1 coordinate */ public int getX1() { return x1; } /** * Sets the X1 coordinate * * @param x1 the X1 coordinate */ public void setX1(int x1) { this.x1 = x1; } /** * Returns the Y1 coordinate * * @return the Y1 coordinate */ public int getY1() { return y1; } /** * Sets the Y1 coordinate * * @param y1 the Y1 coordinate */ public void setY1(int y1) { this.y1 = y1; } /** * Returns the X2 coordinate * * @return the X2 coordinate */ public int getX2() { return x2; } /** * Sets the X2 coordinate * * @param x2 the X2 coordinate */ public void setX2(int x2) { this.x2 = x2; } /** * Returns the Y2 coordinate * * @return the Y2 coordinate */ public int getY2() { return y2; } /** * Sets the Y2 coordinate * * @param y2 the Y2 coordinate */ public void setY2(int y2) { this.y2 = y2; } /** * Returns the line thickness * * @return the line thickness */ public int getThickness() { return thickness; } /** * Sets the line thickness * * @param thickness the line thickness */ public void setThickness(int thickness) { this.thickness = thickness; } /** * Returns line color * * @return the line color */ public Color getColor() { return color; } /** * Sets the line color * * @param color the line color */ public void setColor(Color color) { this.color = color; } /** * Returns line rotation * * @return the line rotation */ public int getRotation() { return rotation; } /** * Sets the line rotation * * @param rotation the line rotation */ public void setRotation(int rotation) { this.rotation = rotation; } /** {@inheritDoc} */ public String toString() { return "AFPLineDataInfo{x1=" + x1 + ", y1=" + y1 + ", x2=" + x2 + ", y2=" + y2 + ", thickness=" + thickness + ", color=" + color + ", rotation=" + rotation + "}"; } }
⏎ org/apache/fop/afp/AFPLineDataInfo.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, 60978👍, 0💬
Popular Posts:
Snappy-Java is a Java port of the "snappy", a fast C++ compresser/decompresser developed by Google. ...
JDK 11 jdk.scripting.nashorn.jm odis the JMOD file for JDK 11 Scripting Nashorn module. JDK 11 Scrip...
What JAR files are required to run dom\Writer.java provided in the Apache Xerces package? 3 JAR file...
JRE 8 rt.jar is the JAR file for JRE 8 RT (Runtime) libraries. JRE (Java Runtime) 8 is the runtime e...
JDK 8 jconsole.jar is the JAR file for JDK 8 JConsole, which is a graphical monitoring tool to monit...