| java.lang.Object |
| ↳ |
com.pnfsoftware.jeb.util.format.HtmlFormatter |
Class Overview
Collection of methods to work on and generate HTML documents.
Summary
| Public Methods |
|
static
CharSequence
|
generate(CharSequence title, CharSequence cssdata, CharSequence body, boolean copyright)
Generate a well formatted HTML output.
|
|
static
CharSequence
|
generate(CharSequence title, CharSequence cssdata, CharSequence body, CharSequence comment)
|
|
[Expand]
Inherited Methods |
From class
java.lang.Object
|
Object
|
clone()
|
|
boolean
|
equals(Object arg0)
|
|
void
|
finalize()
|
|
final
Class<?>
|
getClass()
|
|
int
|
hashCode()
|
|
final
void
|
notify()
|
|
final
void
|
notifyAll()
|
|
String
|
toString()
|
|
final
void
|
wait(long arg0, int arg1)
|
|
final
void
|
wait(long arg0)
|
|
final
void
|
wait()
|
|
Public Constructors
Public Methods
public
static
CharSequence
generate
(CharSequence title, CharSequence cssdata, CharSequence body, boolean copyright)
Generate a well formatted HTML output.
Parameters
| title |
HTML title |
| cssdata |
CSS code to be included in style tags. |
| body |
HTML Body |
| copyright |
true to include JEB Copyright notice |
Returns
- HTML output, as CharSequence
public
static
CharSequence
generate
(CharSequence title, CharSequence cssdata, CharSequence body, CharSequence comment)