Back to project page makler.
The source code is released under:
GNU General Public License
If you think the Android project makler 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 pl.net.newton.Makler.history; // w ww. j ava 2 s . com import pl.net.newton.Makler.db.symbol.Symbol; public interface HistoryProvider { EntryListWithIndexes getHistory(Symbol symbol, boolean force); EntryListWithIndexes getIntraday(Symbol symbol, boolean force); boolean rangeExist(final Symbol symbol, int range); }