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:
mlangkabel
2017-09-07 12:40:34 +02:00
parent 6cf0b87f7b
commit 5c614c77e2
51 changed files with 2518 additions and 3480 deletions
@@ -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;
}
}