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/flow/table/FixedColRowGroupBuilder.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: FixedColRowGroupBuilder.java 1762060 2016-09-23 12:57:46Z ssteiner $ */ package org.apache.fop.fo.flow.table; import java.util.ArrayList; import java.util.List; import org.apache.fop.fo.Constants; import org.apache.fop.fo.ValidationException; /** * A row group builder optimised for a fixed number of columns, known before the parsing * of cells starts (that is, if the fo:table has explicit fo:table-column children). */ class FixedColRowGroupBuilder extends RowGroupBuilder { /** Number of columns in the corresponding table. */ private int numberOfColumns; private TableRow currentTableRow; /** 0-based, index in the row group. */ private int currentRowIndex; /** The rows belonging to this row group. List of List of {@link GridUnit}s. */ private List<List<GridUnit>> rows; private boolean firstInPart = true; /** The last encountered row. This is the last row of the table if it has no footer. */ private List lastRow; private BorderResolver borderResolver; FixedColRowGroupBuilder(Table t) { super(t); numberOfColumns = t.getNumberOfColumns(); if (t.isSeparateBorderModel()) { borderResolver = new SeparateBorderResolver(); } else { borderResolver = new CollapsingBorderResolver(t); } initialize(); } /** * Prepares this builder for creating a new row group. */ private void initialize() { rows = new ArrayList(); currentRowIndex = 0; } /** {@inheritDoc} */ void addTableCell(TableCell cell) { for (int i = rows.size(); i < currentRowIndex + cell.getNumberRowsSpanned(); i++) { List effRow = new ArrayList(numberOfColumns); for (int j = 0; j < numberOfColumns; j++) { effRow.add(null); } rows.add(effRow); } int columnIndex = cell.getColumnNumber() - 1; PrimaryGridUnit pgu = new PrimaryGridUnit(cell, columnIndex); List row = (List) rows.get(currentRowIndex); row.set(columnIndex, pgu); // TODO GridUnit[] cellRow = new GridUnit[cell.getNumberColumnsSpanned()]; cellRow[0] = pgu; for (int j = 1; j < cell.getNumberColumnsSpanned(); j++) { GridUnit gu = new GridUnit(pgu, j, 0); row.set(columnIndex + j, gu); cellRow[j] = gu; } pgu.addRow(cellRow); for (int i = 1; i < cell.getNumberRowsSpanned(); i++) { row = (List) rows.get(currentRowIndex + i); cellRow = new GridUnit[cell.getNumberColumnsSpanned()]; for (int j = 0; j < cell.getNumberColumnsSpanned(); j++) { GridUnit gu = new GridUnit(pgu, j, i); row.set(columnIndex + j, gu); cellRow[j] = gu; } pgu.addRow(cellRow); } } private static void setFlagForCols(int flag, List row) { for (Object aRow : row) { ((GridUnit) aRow).setFlag(flag); } } /** {@inheritDoc} */ void startTableRow(TableRow tableRow) { currentTableRow = tableRow; } /** {@inheritDoc} */ void endTableRow() { assert currentTableRow != null; if (currentRowIndex > 0 && currentTableRow.getBreakBefore() != Constants.EN_AUTO) { TableEventProducer eventProducer = TableEventProducer.Provider.get( currentTableRow.getUserAgent().getEventBroadcaster()); eventProducer.breakIgnoredDueToRowSpanning(this, currentTableRow.getName(), true, currentTableRow.getLocator()); } if (currentRowIndex < rows.size() - 1 && currentTableRow.getBreakAfter() != Constants.EN_AUTO) { TableEventProducer eventProducer = TableEventProducer.Provider.get( currentTableRow.getUserAgent().getEventBroadcaster()); eventProducer.breakIgnoredDueToRowSpanning(this, currentTableRow.getName(), false, currentTableRow.getLocator()); } for (Object o : ((List) rows.get(currentRowIndex))) { GridUnit gu = (GridUnit) o; // The row hasn't been filled with empty grid units yet if (gu != null) { gu.setRow(currentTableRow); } } handleRowEnd(currentTableRow); } /** {@inheritDoc} */ void endRow(TablePart part) { handleRowEnd(part); } private void handleRowEnd(TableCellContainer container) { List currentRow = (List) rows.get(currentRowIndex); lastRow = currentRow; // Fill gaps with empty grid units for (int i = 0; i < numberOfColumns; i++) { if (currentRow.get(i) == null) { currentRow.set(i, new EmptyGridUnit(table, currentTableRow, i)); } } borderResolver.endRow(currentRow, container); if (firstInPart) { setFlagForCols(GridUnit.FIRST_IN_PART, currentRow); firstInPart = false; } if (currentRowIndex == rows.size() - 1) { // Means that the current row has no cell spanning over following rows container.getTablePart().addRowGroup(rows); initialize(); } else { currentRowIndex++; } currentTableRow = null; } /** {@inheritDoc} */ void startTablePart(TablePart part) { firstInPart = true; borderResolver.startPart(part); } /** {@inheritDoc} */ void endTablePart() throws ValidationException { if (rows.size() > 0) { throw new ValidationException( "A table-cell is spanning more rows than available in its parent element."); } setFlagForCols(GridUnit.LAST_IN_PART, lastRow); borderResolver.endPart(); } /** {@inheritDoc} */ void endTable() { borderResolver.endTable(); } }
⏎ org/apache/fop/fo/flow/table/FixedColRowGroupBuilder.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, 22104👍, 0💬
Popular Posts:
JAX-RPC is an API for building Web services and clients that used remote procedure calls (RPC) and X...
What Is HttpComponents httpclient-4.2.2.jar? HttpComponents httpclient-4.2.2.jar is the JAR file for...
xml-commons External Source Code Files are provided in the source package file, xml-commons-external...
Apache Axis2 is the core engine for Web services. It is a complete re-design and re-write of the wid...
Jackson is "the Java JSON library" or "the best JSON parser for Java". Or simply as "JSON for Java"....