Back to project page ShareManager.
The source code is released under:
Copyright (c) 2013, Nelspike All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Red...
If you think the Android project ShareManager 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 share.manager.stock; //from w ww. j a v a 2 s .co m import android.app.Application; public class ShareManager extends Application { public String KEY_PREF_PERIODICITY = "pref_periodicity"; public String KEY_PREF_DAYS = "pref_days"; public String KEY_PREF_CURRENCY = "pref_currency"; public String yahooChart = "http://ichart.finance.yahoo.com/table.txt?"; public String yahooQuote = "http://finance.yahoo.com/d/quotes?f=sl1d1t1c1opghv&s="; private char periodicity; private int days; private String currency; private boolean accessedSettings; public char getPeriodicity() { return periodicity; } public void setPeriodicity(char periodicity) { this.periodicity = periodicity; } public int getDays() { return days; } public void setDays(int days) { this.days = days; } public String getCurrency() { return currency; } public void setCurrency(String currency) { this.currency = currency; } public boolean isAccessedSettings() { return accessedSettings; } public void setAccessedSettings(boolean accessedSettings) { this.accessedSettings = accessedSettings; } }