pdfparagraph.java

来自「用Itext生成Pdf格式文件。 1、新建一个Java工程 2、在工程下新」· Java 代码 · 共 108 行

JAVA
108
字号
/*
 * Created on 2005-10-28
 *
 * TODO To change the template for this generated file go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
package smart.app.pdf;

import java.util.Properties;

import com.lowagie.text.Chunk;
import com.lowagie.text.Font;
import com.lowagie.text.Paragraph;
import com.lowagie.text.Phrase;

/**
 * @author Administrator
 *
 * TODO To change the template for this generated type comment go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
public class PdfParagraph extends Paragraph {

	
	public PdfParagraph() {
		super();
		
	}


	public PdfParagraph(float arg0) {
		super(arg0);
		
	}

	/**
	 * @param arg0
	 */
	public PdfParagraph(Chunk arg0) {
		super(arg0);
		
	}

	/**
	 * @param arg0
	 * @param arg1
	 */
	public PdfParagraph(float arg0, Chunk arg1) {
		super(arg0, arg1);
		
	}

	/**
	 * @param arg0
	 */
	public PdfParagraph(String arg0) {
		super(arg0);
		
	}

	/**
	 * @param arg0
	 * @param arg1
	 */
	public PdfParagraph(String arg0, Font arg1) {
		super(arg0, arg1);
		
	}

	/**
	 * @param arg0
	 * @param arg1
	 */
	public PdfParagraph(float arg0, String arg1) {
		super(arg0, arg1);
		
	}

	/**
	 * @param arg0
	 * @param arg1
	 * @param arg2
	 */
	public PdfParagraph(float arg0, String arg1, Font arg2) {
		super(arg0, arg1, arg2);
		
	}

	/**
	 * @param arg0
	 */
	public PdfParagraph(Phrase arg0) {
		super(arg0);
		
	}

	/**
	 * @param arg0
	 */
	public PdfParagraph(Properties arg0) {
		super(arg0);
		
	}

	public static void main(String[] args) {
	}
}

⌨️ 快捷键说明

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