Gave the boatgroups a selection attribute, allowing them to be highlighted upon clicking

Boats can be clicked on canvas or from selection drop down on the side

#story[955]
This commit is contained in:
William Muir
2017-05-15 14:09:09 +12:00
parent 85d4d63287
commit 764ae37ce4
4 changed files with 75 additions and 1 deletions
+5
View File
@@ -164,4 +164,9 @@ public class Yacht {
public void setMarkLastPast(Integer markLastPast) {
this.markLastPast = markLastPast;
}
@Override
public String toString() {
return boatName;
}
}