Klasse Message

java.lang.Object
org.aspectj.org.eclipse.jdt.core.dom.Message

public class Message extends Object
Error message used to report potential errors found during the AST parsing or name resolution. Instances of this class are immutable.
Seit:
2.0
  • Konstruktordetails

    • Message

      public Message(String message, int startPosition)
      Creates a message.
      Parameter:
      message - the localized message reported by the compiler
      startPosition - the 0-based character index into the original source file, or -1 if no source position information is to be recorded for this message
      Löst aus:
      IllegalArgumentException - if the message is null
      IllegalArgumentException - if the startPosition is lower than -1.
    • Message

      public Message(String message, int startPosition, int length)
      Creates a message.
      Parameter:
      message - the localized message reported by the compiler
      startPosition - the 0-based character index into the original source file, or -1 if no source position information is to be recorded for this message
      length - 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.
      Löst aus:
      IllegalArgumentException - if the message is null
      IllegalArgumentException - if the startPosition is lower than -1.
  • Methodendetails

    • getMessage

      public String getMessage()
      Returns the localized message.
      Gibt zurück:
      the localized message
    • getSourcePosition

      public int getSourcePosition()
      Veraltet.
      Use getStartPosition() instead.
      Returns the character index into the original source file.
      Gibt zurück:
      the 0-based character index, or -1 if no source position information is recorded for this message
      Siehe auch:
    • getStartPosition

      public int getStartPosition()
      Returns the character index into the original source file.
      Gibt zurück:
      the 0-based character index, or -1 if no source position information is recorded for this message
      Siehe auch:
    • getLength

      public int getLength()
      Returns the length in characters of the original source file indicating where the source fragment corresponding to this message ends.
      Gibt zurück:
      a length, or 0 if no source length information is recorded for this message
      Siehe auch: