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 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 get(List MR) { // TODO Auto-generated method stub return null; } }