HeaderFooterpublic class HeaderFooter extends Object
Fields Summary |
---|
public static final int | HEADER_EVEN | public static final int | HEADER_ODD | public static final int | FOOTER_EVEN | public static final int | FOOTER_ODD | public static final int | HEADER_FIRST | public static final int | FOOTER_FIRST | private int | _type | private int | _start | private int | _end |
Constructors Summary |
---|
public HeaderFooter(int type, int startFC, int endFC)
_type = type;
_start = startFC;
_end = endFC;
|
Methods Summary |
---|
public int | getEnd()
return _end;
| public int | getStart()
return _start;
| public boolean | isEmpty()
if(_start - _end == 0)
{
return true;
}
else
{
return false;
}
|
|