Back to project page trifork-ibeacon-demo.
The source code is released under:
Apache License
If you think the Android project trifork-ibeacon-demo listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.trifork.ibeacon.eventbus; /*from w ww.j av a 2 s . co m*/ import org.altbeacon.beacon.Beacon; import java.util.ArrayList; import java.util.Collection; import java.util.List; public class FullScanCompleteEvent implements OttoEvent { private final List<Beacon> beacons; public FullScanCompleteEvent(Collection<Beacon> beacons) { this.beacons = new ArrayList(beacons); } public List<Beacon> getBeacons() { return beacons; } }