Klasse Position

java.lang.Object
org.aspectj.weaver.Position
Alle implementierten Schnittstellen:
IHasPosition

public class Position extends Object implements IHasPosition
  • Konstruktorübersicht

    Konstruktoren
    Konstruktor
    Beschreibung
    Position(int start, int end)
     
  • Methodenübersicht

    Modifizierer und Typ
    Methode
    Beschreibung
    int
    The ending index of this location in the character stream This points to the last character in this token.
    int
    The starting index of this location in the character stream.

    Von Klasse geerbte Methoden java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Konstruktordetails

    • Position

      public Position(int start, int end)
  • Methodendetails

    • getEnd

      public int getEnd()
      Beschreibung aus Schnittstelle kopiert: IHasPosition
      The ending index of this location in the character stream This points to the last character in this token. If a location truly had no contents, then start == end + 1. We don't recommend this.
      Angegeben von:
      getEnd in Schnittstelle IHasPosition
    • getStart

      public int getStart()
      Beschreibung aus Schnittstelle kopiert: IHasPosition
      The starting index of this location in the character stream.
      Angegeben von:
      getStart in Schnittstelle IHasPosition