⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fjreportpage.java

📁 定要上载质量高而定要上载质量高而定要上载质量高而定要上载质量高而定要上定要上载质量高而定要上载质量高而载质量高而
💻 JAVA
字号:
package net.sf.fjreport;

import java.util.ArrayList;
import java.util.List;

import net.sf.fjreport.cell.Cell;
import net.sf.fjreport.line.Line;

/**
 * A report template is composed by multi-page
 * Each page is a structure of cells, hLines, vLines
 * and currentCell.
 * 
 * Copyright (C) since <2006>  <Frank Lewis>
 */
public class FJReportPage {
	/**
	 * all cells of the page 
	 */
	public List<Cell> cells = new ArrayList();
	List<Cell> oldCells = new ArrayList();
	/**
	 * current editing cell
	 */
	public Cell currentCell;
	/**
	 * horizontal lines
	 */
	public List<Line> hLines = new ArrayList();
	/**
	 * vertical lines
	 */
	public List<Line> vLines = new ArrayList();
	
	public int lineIDSeed = 0;
	
	public int getLineID() { 
		return lineIDSeed++;
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -