-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNPromise.java
More file actions
executable file
·47 lines (41 loc) · 1.62 KB
/
NPromise.java
File metadata and controls
executable file
·47 lines (41 loc) · 1.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*
********************************************************************************
* *
* word pdf html 报表统一接口 *
* *
********************************************************************************
*
* 版权声明: Copyright(c) 2000-2010 PROMISE Networks.All Right Reserved
*
* 文件列表: ALL
*
* 声 明: 任何人都可随意传播修改,修改后请将修改部分发至chenlx10@163.com,任何
问题都可与chenlx10@163.com联系。未申请网址:www.frdog.org
*
* 作 者: 陈令祥
*
* 版 本: v1.0
*
* 日期: 20100920
*
********************************************************************************
*
* 历史记录:
*
* v1.0 20100920 edited by MagicPromise
*
*/
package com.promise;
import java.awt.Color;
import java.io.IOException;
import java.net.MalformedURLException;
import com.lowagie.text.BadElementException;
import com.lowagie.text.DocumentException;
public interface NPromise {
static int ALIGN_LEFT = 0,ALIGN_CENTER = 1,ALIGN_RIGHT =2;
boolean set_chapter(String content,int plies)throws DocumentException, IOException ;
public void Write_clean();
public void write_av(String image,String msg,int Align,Color BorderColor) throws BadElementException, MalformedURLException, IOException;
public void write_av(String data);
public boolean write_av(PromiseData Pdata,float tablewidth[],boolean image) throws DocumentException, MalformedURLException, IOException;
}