Package org.eclipse.jdt.core.dom
Class Message
java.lang.Object
org.eclipse.jdt.core.dom.Message
Error message used to report potential errors found during the AST parsing
or name resolution. Instances of this class are immutable.
- Since:
- 2.0
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionint
Returns the length in characters of the original source file indicating where the source fragment corresponding to this message ends.Returns the localized message.int
Deprecated.int
Returns the character index into the original source file.
-
Constructor Details
-
Message
Creates a message.- Parameters:
message
- the localized message reported by the compilerstartPosition
- the 0-based character index into the original source file, or-1
if no source position information is to be recorded for this message- Throws:
IllegalArgumentException
- if the message is nullIllegalArgumentException
- if the startPosition is lower than -1.
-
Message
Creates a message.- Parameters:
message
- the localized message reported by the compilerstartPosition
- the 0-based character index into the original source file, or-1
if no source position information is to be recorded for this messagelength
- the length in character of the original source file indicating where the source fragment corresponding to this message ends. 0 or a negative number if none. A negative number will be converted to a 0-length.- Throws:
IllegalArgumentException
- if the message is nullIllegalArgumentException
- if the startPosition is lower than -1.
-
-
Method Details
-
getMessage
Returns the localized message.- Returns:
- the localized message
-
getSourcePosition
public int getSourcePosition()Deprecated.UsegetStartPosition()
instead.Returns the character index into the original source file.- Returns:
- the 0-based character index, or
-1
if no source position information is recorded for this message - See Also:
-
getStartPosition
public int getStartPosition()Returns the character index into the original source file.- Returns:
- the 0-based character index, or
-1
if no source position information is recorded for this message - See Also:
-
getLength
public int getLength()Returns the length in characters of the original source file indicating where the source fragment corresponding to this message ends.- Returns:
- a length, or
0
if no source length information is recorded for this message - See Also:
-
getStartPosition()
instead.