PageWriter

Record

This writes the page content for normal class (or element) pages.

Extends

Record

Modifiers

public final

final PageWriter writer = new PageWriter(
    Blob.class, // the root class to structure this page around
    new WebsiteDetails("hello", new ArrayList<>()), // details of the entire generation process
    "My Title", // page title
    "Cool description", // page description
    "hello", "there", "thing" // page keywords
);

final PageWriter writer = new PageWriter(
    ThisClass.class,
    new WebsiteDetails("MyProgram", classes),
    "Documentation for ThisClass", // page title
    "Cool description", // page description
    "hello", "there", "thing" // page keywords
);

Constructors


new PageWriter (Class, WebsiteDetails, String, String, String...)

Constructor
No description is available for this element.
IndexTypeName
1Classclazz
2WebsiteDetailsdetails
3Stringstring
4Stringstring
5String[]string
Return Type

PageWriter

Modifiers

public varargs

new PageWriter (Class, WebsiteDetails, String, String, String[], String[], String[])

Constructor
No description is available for this element.
IndexTypeName
1Classclazz
2WebsiteDetailsdetails
3Stringstring
4Stringstring
5String[]string
6String[]string
7String[]string
Return Type

PageWriter

Modifiers

public


Methods


equals (Object)

Method
No description is available for this element.
IndexTypeName
1Objecto
Return Type

boolean

Modifiers

public final

toString ()

Method
No description is available for this element.
Return Type

String

Modifiers

public final

hashCode ()

Method
No description is available for this element.
Return Type

int

Modifiers

public final

write (OutputStream, WritableElement...)

Method
No description is available for this element.
IndexTypeName
1OutputStreamtarget
2WritableElement[]elements
Return Type

boolean

Modifiers

public varargs

root ()

Method
No description is available for this element.
Return Type

Class

Modifiers

public

scripts ()

Method
No description is available for this element.
Return Type

String[]

Modifiers

public

description ()

Method
No description is available for this element.
Return Type

String

Modifiers

public

details ()

Method
No description is available for this element.
Return Type

WebsiteDetails

Modifiers

public

title ()

Method
No description is available for this element.
Return Type

String

Modifiers

public

keywords ()

Method
No description is available for this element.
Return Type

String[]

Modifiers

public

metas ()

Method
No description is available for this element.
Return Type

String[]

Modifiers

public