Package org.jfree.xml.generator.model
Class Comments
- java.lang.Object
-
- org.jfree.xml.generator.model.Comments
-
public class Comments extends java.lang.ObjectA set of comments for a model.
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.String[]closeTagCommentClose tag comments.private java.lang.String[]openTagCommentOpen tag comments.
-
Constructor Summary
Constructors Constructor Description Comments(java.lang.String[] openTagComment, java.lang.String[] closeTagComment)Creates a new set of comments.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String[]getCloseTagComment()Returns the close tag comments.java.lang.String[]getOpenTagComment()Returns the open tag comments.java.lang.StringtoString()Returns a string representation of the set of comments.
-
-
-
Method Detail
-
getOpenTagComment
public java.lang.String[] getOpenTagComment()
Returns the open tag comments.- Returns:
- The open tag comments.
-
getCloseTagComment
public java.lang.String[] getCloseTagComment()
Returns the close tag comments.- Returns:
- The close tag comments.
-
toString
public java.lang.String toString()
Returns a string representation of the set of comments.- Overrides:
toStringin classjava.lang.Object- Returns:
- A string.
-
-