Example usage for org.aspectj.lang.reflect SourceLocation getColumn

List of usage examples for org.aspectj.lang.reflect SourceLocation getColumn

Introduction

In this page you can find the example usage for org.aspectj.lang.reflect SourceLocation getColumn.

Prototype

int getColumn();

Source Link

Usage

From source file:com.github.woozoo73.ht.SourceLocationInfo.java

License:Apache License

@SuppressWarnings("deprecation")
public SourceLocationInfo(SourceLocation sourceLocation) {
    if (sourceLocation == null) {
        return;/*  w w  w.j av  a 2  s  . c  o m*/
    }

    this.withinType = sourceLocation.getWithinType();
    this.fileName = sourceLocation.getFileName();
    this.line = sourceLocation.getLine();
    this.column = sourceLocation.getColumn();
}