Package Torello.JavaDoc.Annotations
Interface AnnotationMirror
-
- All Known Implementing Classes:
CSSLMirror,IHTMirror,JDHBIMirror,JSIMirror,LJSMirror,SFMirror
public interface AnnotationMirror
Enforces that the original annotation text used & placed by the user is stored, inside the class, as ajava.lang.String. The values which are returned by these methods are used solely for error printing and the messager.
Hi-Lited Source-Code:- View Here: Torello/JavaDoc/Annotations/AnnotationMirror.java
- Open New Browser-Tab: Torello/JavaDoc/Annotations/AnnotationMirror.java
File Size: 1,061 Bytes Line Count: 29 '\n' Characters Found
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method StringgetAnnotationAsString()StringgetAnnotationName()StringtoString()
-
-
-
Method Detail
-
getAnnotationAsString
java.lang.String getAnnotationAsString()
Extracts the actual text that a programmer / software engineer has placed onto a Java Entity or Type, and returns it as aString.- Returns:
- The text of the annotation which the user has placed.
-
getAnnotationName
java.lang.String getAnnotationName()
Extracts the name of the annotation as aString.- Returns:
- A
Stringsuch as"StaticFunctional"or"IntoHTMLTable".
-
toString
java.lang.String toString()
Generates aStringrepresentation of this mirror instance.- Overrides:
toStringin classjava.lang.Object- Returns:
- A
java.lang.Stringrepresenting this instance data
-
-