📄 pdftable.java
字号:
/*
* Created on 2005-8-1
*
* 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.BadElementException;
import com.lowagie.text.Table;
/**
* @author oracle
*
* TODO To change the template for this generated type comment go to
* Window - Preferences - Java - Code Style - Code Templates
*/
public class PdfTable extends Table {
/**
* @param arg0
* @throws com.lowagie.text.BadElementException
*/
public PdfTable(int arg0) throws BadElementException {
super(arg0);
// TODO Auto-generated constructor stub
}
/**
* @param arg0
* @param arg1
* @throws com.lowagie.text.BadElementException
*/
public PdfTable(int arg0, int arg1) throws BadElementException {
super(arg0, arg1);
// TODO Auto-generated constructor stub
}
/**
* @param arg0
*/
public PdfTable(Properties arg0) {
super(arg0);
// TODO Auto-generated constructor stub
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -