|
Préférences
Moteurs de recherche
|
|||||||||||||||||||||||||||||
| JavaTM 2 Platform Std. Ed. v1.6.0
javax.tools
|
||||||||||||||||||||||||||||||
| Nested Class Summary | |
|---|---|
static class |
Diagnostic.Kind
Kinds of diagnostics, for example, error or warning. |
| Field Summary | |
|---|---|
static long |
NOPOS
Used to signal that no position is available. |
| Method Summary | |
|---|---|
String |
getCode()
Gets a diagnostic code indicating the type of diagnostic. |
long |
getColumnNumber()
Gets the column number of the character offset returned by getPosition(). |
long |
getEndPosition()
Gets the character offset from the beginning of the file associated with this diagnostic that indicates the end of the problem. |
Diagnostic.Kind |
getKind()
Gets the kind of this diagnostic, for example, error or warning. |
long |
getLineNumber()
Gets the line number of the character offset returned by getPosition(). |
String |
getMessage(Locale locale)
Gets a localized message for the given locale. |
long |
getPosition()
Gets a character offset from the beginning of the source object associated with this diagnostic that indicates the location of the problem. |
S |
getSource()
Gets the source object associated with this diagnostic. |
long |
getStartPosition()
Gets the character offset from the beginning of the file associated with this diagnostic that indicates the start of the problem. |
| Field Detail |
|---|
static final long NOPOS
| Method Detail |
|---|
Diagnostic.Kind getKind()
S getSource()
null if no source object is associated with the
diagnostic.long getPosition()
getStartPostion() <= getPosition()
getPosition() <= getEndPosition()
NOPOS if getSource() would return null or if
no location is suitablelong getStartPosition()
NOPOS if and
only if getPosition() returns NOPOSlong getEndPosition()
NOPOS if and
only if getPosition() returns NOPOSlong getLineNumber()
NOPOS if and only if getPosition() returns NOPOSlong getColumnNumber()
NOPOS if and only if getPosition() returns NOPOSString getCode()
null.
String getMessage(Locale locale)
null use the default locale.
locale - a locale; might be null