at.dms.compiler
Class JavadocComment

java.lang.Object
  |
  +--at.dms.compiler.JavaStyleComment
        |
        +--at.dms.compiler.JavadocComment

public class JavadocComment
extends JavaStyleComment

The contents of a parsed javadoc comment.


Fields inherited from class at.dms.compiler.JavaStyleComment
text
 
Constructor Summary
JavadocComment(java.lang.String text, boolean spaceBefore, boolean spaceAfter)
          Construct a node in the parsing tree.
 
Method Summary
 java.lang.String getParams()
          Not well-implemented; just returns the whole comment text.
 boolean isDeprecated()
          Return if this javadoc comment contains a deprecated clause.
 
Methods inherited from class at.dms.compiler.JavaStyleComment
getText, hadSpaceAfter, hadSpaceBefore, isLineComment
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

JavadocComment

public JavadocComment(java.lang.String text,
                      boolean spaceBefore,
                      boolean spaceAfter)
Construct a node in the parsing tree.
Parameters:
text - he string representation of this comment.
Method Detail

isDeprecated

public boolean isDeprecated()
Return if this javadoc comment contains a deprecated clause.

getParams

public java.lang.String getParams()
Not well-implemented; just returns the whole comment text.