Archived
0

- implement add item dialog

- implement add group dialog
- implement remove system and station
- small fixes
This commit is contained in:
iMoHax
2015-01-08 18:56:56 +03:00
parent 9b1c975125
commit 11c714087c
18 changed files with 341 additions and 40 deletions

View File

@@ -67,6 +67,11 @@ public class ModelFabric {
return model.getStation();
}
public GroupModel get(Group group){
if (group == null) return null;
return new GroupModel(group);
}
public ItemModel get(Item item){
if (item == null) return null;
ItemModel res=null;