src: moved Java indexer from JavaSymbolSolver to Eclipse JDT
* added some more tests * changed 3rd party licenses respectively fortune cookie message = Your present plans are going to succeed.
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
package com.sourcetrail;
|
||||
|
||||
public class Position
|
||||
{
|
||||
public int line = 0;
|
||||
public int column = 0;
|
||||
|
||||
public Position()
|
||||
{
|
||||
}
|
||||
|
||||
public Position(int line, int column)
|
||||
{
|
||||
this.line = line;
|
||||
this.column = column;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user