Class JavaMultiLineComment

java.lang.Object
com.github.tadukoo.java.comment.JavaMultiLineComment
All Implemented Interfaces:
JavaCodeType, JavaTokens
Direct Known Subclasses:
EditableJavaMultiLineComment, UneditableJavaMultiLineComment

public abstract class JavaMultiLineComment extends Object implements JavaCodeType
Represents a multi-line comment in Java code
Version:
Beta v.0.5
Author:
Logan Ferree (Tadukoo)
  • Field Details

    • content

      protected List<String> content
      The content of the comment
  • Constructor Details

    • JavaMultiLineComment

      protected JavaMultiLineComment(boolean editable, List<String> content)
      Constructs a new JavaMultiLineComment with the given parameters
      Parameters:
      editable - Whether this comment is editable or not
      content - The content of the comment
  • Method Details