summaryrefslogtreecommitdiffstats
path: root/lookup/RatioLut.java
blob: 9ead05ec029bc806ddd0b82e0b7d40623e2996d8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package lookup;

import java.util.LinkedList;
import java.util.List;

import DataStructure.GPScoordinate;
import DataStructure.SingleBTS;

/**
 * there should be as many RatioLuts as there are entries in arfcn table. For
 * every OpenBSC BTS one!
 * 
 * @author richy
 * 
 */
public class RatioLut implements ILut {
	public int bts; // to where are the ratios calculated

	public RatioLut(int ARFCN) {
		this.bts = ARFCN;
	}

	@Override
	public LinkedList<GPScoordinate> get(SingleBTS MR) {
		// TODO Auto-generated method stub
		return null;
	}

	@Override
	public void fill(GPScoordinate where, SingleBTS what) {
		// TODO Auto-generated method stub

	}

	@Override
	public LinkedList<GPScoordinate> get(List<SingleBTS> MR) {
		// TODO Auto-generated method stub
		return null;
	}

}