Example usage for org.aspectj.weaver.patterns IToken getStart

List of usage examples for org.aspectj.weaver.patterns IToken getStart

Introduction

In this page you can find the example usage for org.aspectj.weaver.patterns IToken getStart.

Prototype

int getStart();

Source Link

Document

The starting index of this location in the character stream.

Usage

From source file:org.caesarj.compiler.aspectj.CaesarWrapperPatternParser.java

License:Open Source License

private boolean isAdjacent(IToken first, IToken second) {
    return first.getEnd() == second.getStart() - 1;
}