Schnittstelle OutputType
- Alle bekannten Implementierungsklassen:
HtmlOutputType
,JavaOutputType
,PropertiesOutputType
,UnknownOutputType
,XmlOutputType
public interface OutputType
An interface describing the type of output produced by the generator.
- Version:
- $Id: $
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibunggetCommentEnd
(String lineBreak) Returns the end of a comment.getCommentStart
(String lineBreak) Returns the start of a comment.
-
Methodendetails
-
getCommentStart
Returns the start of a comment. It is assumed that the comment itself does not contain line breaks.- Parameter:
lineBreak
- the line break for the current output, not null.- Gibt zurück:
- the String which starts a comment, not null.
-
getCommentEnd
Returns the end of a comment. It is assumed that the comment itself does not contain line breaks.- Parameter:
lineBreak
- the line break for the current output, not null.- Gibt zurück:
- the String which ends a comment, not null.
-