Archived
0

implement filter for market analyzer

This commit is contained in:
iMoHax
2015-01-07 18:27:32 +03:00
parent 00d8f6e084
commit 9b1c975125
16 changed files with 757 additions and 216 deletions

View File

@@ -45,6 +45,9 @@ public class ModelFabric {
return res;
}
public Place get(SystemModel model){
return model.getSystem();
}
public StationModel get(Vendor station){
if (station == null) return NONE_STATION;
@@ -60,6 +63,9 @@ public class ModelFabric {
return res;
}
public Vendor get(StationModel model){
return model.getStation();
}
public ItemModel get(Item item){
if (item == null) return null;