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.gpw; // w w w . ja v a2 s. c om import java.util.List; import pl.net.newton.Makler.db.quote.Quote; import pl.net.newton.Makler.db.symbol.Symbol; import pl.net.newton.Makler.gpw.ex.GpwException; public interface QuotesReceiver { List<Symbol> getSymbols() throws GpwException; List<Symbol> getSymbols(String lastUpdate) throws GpwException; Quote getQuoteBySymbol(String symbol) throws GpwException; List<Quote> getQuotesBySymbols(List<String> symbols) throws GpwException; }