Before the actual beginning of the source code, a header may be generated. The header can consist of a title (which may possibly be used as a hyperlink) and an author. By default these are not set and thus not generated.
The title property is used to set a title for the generated output. The style of the title is controlled by the titleStyle property, which has a default value of "title"
| HTMLConverter | String getTitle() void setTitle( String title ) |
|
| Java2Web | java2web ... --title = xxxxx ... | |
| <j2w:convert> | <j2w:convert ... title="title" ... > |
| HTMLConverter | String getTitleStyle() void setTitleStyle( String style ) |
|
| Java2Web | java2web ... --titleStyle = xxxxx ... | |
| <j2w:convert> | <j2w:convert ... titleStyle="style" ... > |
The title can be turned into a hyperlink by setting the titleLocation property to the URL you want.
| HTMLConverter | String getTitleLocation() void setTitleLocation( String location ) |
|
| Java2Web | java2web ... --titleLocation = xxxxx ... | |
| <j2w:convert> | <j2w:convert ... titleLocation="url" ... > |
Right below the title, an author can be rendered. The text that appears is stored in the author property, and the style of the generated output is controlled by the authorStyle property.
| HTMLConverter | String getAuthor() void setAuthor( String title ) |
|
| Java2Web | java2web ... --author = xxxxx ... | |
| <j2w:convert> | <j2w:convert ... author="author name " ... > |
| HTMLConverter | String getAuthorStyle() void setAuthorStyle( String style ) |
|
| Java2Web | java2web ... --authorStyle = xxxxx ... | |
| <j2w:convert> | <j2w:convert ... authorStyle="style" ... > |
The author can be turned into a hyperlink by setting the authorLocation property to the URL you want.
| HTMLConverter | String getAuthorLocation() void setAuthorLocation( String location ) |
|
| Java2Web | java2web ... --authorLocation = xxxxx ... | |
| <j2w:convert> | <j2w:convert ... authorLocation="url" ... > |