- Direct Known Subclasses:
EditableJavadoc, UneditableJavadoc
public abstract class Javadoc
extends Object
Javadoc represents a Javadoc in Java.
- Since:
- Alpha v.0.3.3 (as old version that is now more like UneditableJavadoc), Alpha v.0.4 (as newer version)
- Version:
- Alpha v.0.4
- Author:
- Logan Ferree (Tadukoo)
-
Field Summary
Fields
protected boolean
Whether the
Javadoc is condensed or not
-
Constructor Summary
Constructors
protected
Constructs a new
Javadoc using the given parameters
-
Method Summary
-
Field Details
-
condensed
protected boolean condensed
Whether the
Javadoc is condensed or not
-
-
-
-
-
-
-
Constructor Details
-
Javadoc
Constructs a new
Javadoc using the given parameters
- Parameters:
editable - Whether the Javadoc is editable or not
condensed - Whether the Javadoc is condensed or not
content - The content of the Javadoc
author - The author of the Javadoc
version - The version for the Javadoc
since - The "since" value for the Javadoc
params - The parameters in the Javadoc
returnVal - The return string in the Javadoc
-
Method Details
-
isEditable
public boolean isEditable()
- Returns:
- Whether the
Javadoc is editable or not
-
isCondensed
public boolean isCondensed()
- Returns:
- Whether the
Javadoc is condensed or not
-
getContent
- Returns:
- The content of the
Javadoc
-
getAuthor
- Returns:
- The author of the
Javadoc
-
getVersion
- Returns:
- The version for the
Javadoc
-
getSince
- Returns:
- The "since" value for the
Javadoc
-
getParams
- Returns:
- The parameters in the
Javadoc
-
getReturnVal
- Returns:
- The return string for the
Javadoc
-
toString
- Overrides:
toString in class Object
- Returns:
- The actual Javadoc text this class represents
-