pt.compiler.parser.ast
Class Comment

java.lang.Object
  extended by pt.compiler.parser.ast.Node
      extended by pt.compiler.parser.ast.Comment
Direct Known Subclasses:
BlockComment, JavadocComment, LineComment

public abstract class Comment
extends Node

Author:
Julio Vilmar Gesser

Constructor Summary
Comment(int beginLine, int beginColumn, int endLine, int endColumn, java.lang.String content)
           
 
Method Summary
 java.lang.String getContent()
           
 
Methods inherited from class pt.compiler.parser.ast.Node
accept, accept, getBeginColumn, getBeginLine, getData, getEndColumn, getEndLine, setData, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

Comment

public Comment(int beginLine,
               int beginColumn,
               int endLine,
               int endColumn,
               java.lang.String content)
Method Detail

getContent

public java.lang.String getContent()