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; /*from ww w. ja v a 2s . c om*/ import java.util.Collection; import com.helpguest.droid.tracker.ITracker; /** * Interface to writing trackers to persistent stores * @author da007ab * */ public interface ITrackerWriter { /** * @param tracker to be written to persistence */ void write(ITracker tracker); /** * * @param trackers Collection to write to the file */ void write(Collection<ITracker> trackers); }