242526272829303132
public class Helper { protected static Iterable<Action> userLocationsToMenuActions() { LinkedList<Action> lac = new LinkedList<Action>(); for (LocationCoordinates lc : Locations.getLocations()) lac.add(new LocationAction(lc)); return lac; }