kerry
6 years ago
9 changed files with 106 additions and 8 deletions
@ -0,0 +1,12 @@ |
|||||||
|
package com.fr; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author kerry |
||||||
|
* @date 2018/8/20 |
||||||
|
*/ |
||||||
|
public interface Container { |
||||||
|
String getHtmlContent(double lineStartY, double lineEndY); |
||||||
|
|
||||||
|
float getHeight(); |
||||||
|
|
||||||
|
} |
@ -0,0 +1,12 @@ |
|||||||
|
package com.fr.third.v2.lowagie.text.pdf; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author kerry |
||||||
|
* @date 2018/8/10 |
||||||
|
*/ |
||||||
|
public interface PdfBlock { |
||||||
|
float getHeight(); |
||||||
|
void calculateHeight(); |
||||||
|
|
||||||
|
String toHtmlString(double startY, double endY); |
||||||
|
} |
Loading…
Reference in new issue