Back to project page cost-tracker.
The source code is released under:
GNU General Public License
If you think the Android project cost-tracker 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.helpguest.droid.tracker.io; // w w w .j av a2 s. c om import java.util.Collection; import com.helpguest.droid.tracker.ITracker; /** * An interface to reading ITrackers from persistent stores * @author da007ab * */ public interface ITrackerReader { /** * @return all trackers from persistence */ Collection<ITracker> getTrackers(); }