SYMBOL INDEX (148 symbols across 27 files) FILE: app/src/androidTest/java/com/morristaedt/mirror/ApplicationTest.java class ApplicationTest (line 9) | public class ApplicationTest extends ApplicationTestCase { method ApplicationTest (line 10) | public ApplicationTest() { FILE: app/src/main/java/com/morristaedt/mirror/MirrorActivity.java class MirrorActivity (line 37) | public class MirrorActivity extends ActionBarActivity { method onNewXKCDToday (line 59) | @Override method onNewStockPrice (line 71) | @Override method onWeatherToday (line 83) | @Override method onShouldBike (line 91) | @Override method onNewNews (line 103) | @Override method onShouldGivePositiveAffirmation (line 116) | @Override method onCalendarUpdate (line 129) | @Override method onCountdownUpdate (line 143) | @Override method onCreate (line 155) | @Override method onPause (line 211) | @Override method onNewIntent (line 220) | @Override method colorTextViews (line 226) | private void colorTextViews(ViewGroup mview){ method setViewState (line 237) | private void setViewState() { method onBackPressed (line 304) | @Override FILE: app/src/main/java/com/morristaedt/mirror/MirrorApplication.java class MirrorApplication (line 13) | public class MirrorApplication extends Application { method onCreate (line 15) | @Override FILE: app/src/main/java/com/morristaedt/mirror/SetUpActivity.java class SetUpActivity (line 27) | public class SetUpActivity extends Activity { method onCreate (line 69) | @Override method onDestroy (line 233) | @Override method setUpLocationMonitoring (line 241) | private void setUpLocationMonitoring() { method saveFields (line 290) | private void saveFields() { FILE: app/src/main/java/com/morristaedt/mirror/configuration/ConfigurationSettings.java class ConfigurationSettings (line 17) | public class ConfigurationSettings { method ConfigurationSettings (line 62) | public ConfigurationSettings(Context context) { method readPrefs (line 67) | private void readPrefs() { method setIsCelsius (line 85) | public void setIsCelsius(boolean isCelsius) { method setTextColorRed (line 91) | public void setTextColorRed(int red){ method setTextColorGreen (line 95) | public void setTextColorGreen(int green){ method setTextColorBlue (line 99) | public void setTextColorBlue(int blue){ method setTextColor (line 103) | public void setTextColor(int color){ method setShowBikingHint (line 110) | public void setShowBikingHint(boolean show) { method setShowMoodDetection (line 117) | public void setShowMoodDetection(boolean show) { method setShowNextCalendarEvent (line 124) | public void setShowNextCalendarEvent(boolean show) { method setShowNewsHeadline (line 131) | public void setShowNewsHeadline(boolean show) { method setXKCDPreference (line 138) | public void setXKCDPreference(boolean showXKCD, boolean invertXKCDColo... method setLatLon (line 147) | public void setLatLon(String latitude, String longitude) { method setStockTickerSymbol (line 157) | public void setStockTickerSymbol(String tickerSymbol) { method setShowCountdown (line 165) | public void setShowCountdown(boolean showCountdown){ method setCountdownTime (line 172) | public void setCountdownTime(int days, int hours, int mins, int secs){ method getIsCelsius (line 180) | public boolean getIsCelsius() { method getForecastUnits (line 184) | public String getForecastUnits() { method getTextColor (line 188) | public int getTextColor() { method showBikingHint (line 192) | public boolean showBikingHint() { method showMoodDetection (line 196) | public boolean showMoodDetection() { method showNextCalendarEvent (line 200) | public boolean showNextCalendarEvent() { method showNewsHeadline (line 204) | public boolean showNewsHeadline() { method showXKCD (line 208) | public boolean showXKCD() { method invertXKCD (line 212) | public boolean invertXKCD() { method showCountdown (line 216) | public boolean showCountdown(){ method getCountdownEnd (line 220) | public Date getCountdownEnd(){ method getLatitude (line 224) | public String getLatitude() { method getLongitude (line 228) | public String getLongitude() { method showStock (line 232) | public boolean showStock() { method getStockTickerSymbol (line 236) | public String getStockTickerSymbol() { method isDebugBuild (line 240) | public static boolean isDebugBuild() { method isDemoMode (line 249) | public static boolean isDemoMode() { FILE: app/src/main/java/com/morristaedt/mirror/modules/BirthdayModule.java class BirthdayModule (line 13) | public class BirthdayModule { method getBirthday (line 23) | public static String getBirthday() { FILE: app/src/main/java/com/morristaedt/mirror/modules/CalendarModule.java class CalendarModule (line 20) | public class CalendarModule { type CalendarListener (line 21) | public interface CalendarListener { method onCalendarUpdate (line 22) | void onCalendarUpdate(String title, String details); method getCalendarEvents (line 25) | public static void getCalendarEvents(final Context context, final Cale... FILE: app/src/main/java/com/morristaedt/mirror/modules/ChoresModule.java class ChoresModule (line 10) | public class ChoresModule { method waterPlantsToday (line 12) | public static boolean waterPlantsToday() { method makeGroceryListToday (line 22) | public static boolean makeGroceryListToday() { FILE: app/src/main/java/com/morristaedt/mirror/modules/CountdownModule.java class CountdownModule (line 9) | public class CountdownModule { type CountdownListener (line 11) | public interface CountdownListener { method onCountdownUpdate (line 12) | void onCountdownUpdate(String timeLeft); method getTimeRemaining (line 17) | public static void getTimeRemaining(final Date countdownEnd, final Cou... method formatTime (line 32) | private static String formatTime(long time) { FILE: app/src/main/java/com/morristaedt/mirror/modules/DayModule.java class DayModule (line 13) | public class DayModule { method getDay (line 15) | public static Spanned getDay() { method getDayOfMonthSuffix (line 22) | private static String getDayOfMonthSuffix(final int n) { FILE: app/src/main/java/com/morristaedt/mirror/modules/ForecastModule.java class ForecastModule (line 24) | public class ForecastModule { type ForecastListener (line 26) | public interface ForecastListener { method onWeatherToday (line 27) | void onWeatherToday(String weatherToday); method onShouldBike (line 29) | void onShouldBike(boolean showToday, boolean shouldBike); method getForecastIOHourlyForecast (line 39) | public static void getForecastIOHourlyForecast(final String apiKey, fi... method getOpenWeatherForecast (line 108) | public static void getOpenWeatherForecast(final String apiKey, final S... method getOpenWeatherUnits (line 140) | @NonNull FILE: app/src/main/java/com/morristaedt/mirror/modules/MoodModule.java class MoodModule (line 20) | public class MoodModule { type MoodListener (line 27) | public interface MoodListener { method onShouldGivePositiveAffirmation (line 28) | void onShouldGivePositiveAffirmation(String affirmation); method MoodModule (line 31) | public MoodModule(WeakReference contextWeakReference) { method getCurrentMood (line 35) | public void getCurrentMood(MoodListener moodListener) { method release (line 40) | public void release() { method createCameraSource (line 52) | private void createCameraSource() { method getFeedbackForSmileProbability (line 103) | private String getFeedbackForSmileProbability(float isSmilingProbabili... FILE: app/src/main/java/com/morristaedt/mirror/modules/NewsModule.java class NewsModule (line 13) | public class NewsModule { type NewsListener (line 14) | public interface NewsListener { method onNewNews (line 15) | void onNewNews(String headline); method getNewsHeadline (line 18) | public static void getNewsHeadline(final NewsListener newsListener) { FILE: app/src/main/java/com/morristaedt/mirror/modules/TimeModule.java class TimeModule (line 13) | public class TimeModule { method getTimeOfDayWelcome (line 15) | public static String getTimeOfDayWelcome(@NonNull Resources resources) { FILE: app/src/main/java/com/morristaedt/mirror/modules/TrainScheduleModule.java class TrainScheduleModule (line 8) | public class TrainScheduleModule { method waitingSecondsForNextArrivalWithBufferSeconds (line 10) | public int waitingSecondsForNextArrivalWithBufferSeconds(int bufferSec... method earliestArrivalAfterNowWithBufferSeconds (line 17) | public int earliestArrivalAfterNowWithBufferSeconds(int bufferSeconds) { method earliestArrivalAfterDaySeconds (line 22) | public int earliestArrivalAfterDaySeconds (int afterDaySecs) { method nowDaySeconds (line 35) | public int nowDaySeconds() { method stringToDaySeconds (line 50) | public int stringToDaySeconds(String daySecsString) { method nowSchedule (line 62) | public List nowSchedule() { FILE: app/src/main/java/com/morristaedt/mirror/modules/XKCDModule.java class XKCDModule (line 21) | public class XKCDModule { type XKCDListener (line 23) | public interface XKCDListener { method onNewXKCDToday (line 24) | void onNewXKCDToday(String url); method getXKCDForToday (line 32) | public static void getXKCDForToday(final XKCDListener listener) { FILE: app/src/main/java/com/morristaedt/mirror/modules/YahooFinanceModule.java class YahooFinanceModule (line 19) | public class YahooFinanceModule { type StockListener (line 21) | public interface StockListener { method onNewStockPrice (line 22) | void onNewStockPrice(YahooStockResponse.YahooQuoteResponse quoteResp... method getStockForToday (line 30) | public static void getStockForToday(final String stockName, final Stoc... FILE: app/src/main/java/com/morristaedt/mirror/receiver/AlarmReceiver.java class AlarmReceiver (line 16) | public class AlarmReceiver extends BroadcastReceiver { method startMirrorUpdates (line 23) | public static void startMirrorUpdates(Context context) { method stopMirrorUpdates (line 32) | public static void stopMirrorUpdates(Context context) { method onReceive (line 41) | @Override FILE: app/src/main/java/com/morristaedt/mirror/requests/ForecastRequest.java type ForecastRequest (line 10) | public interface ForecastRequest { method getHourlyForecast (line 15) | @GET("/forecast/{apikey}/{lat},{lon}") FILE: app/src/main/java/com/morristaedt/mirror/requests/ForecastResponse.java class ForecastResponse (line 9) | public class ForecastResponse { class ForecastCurrently (line 17) | public class ForecastCurrently { method getDisplayTemperature (line 21) | public String getDisplayTemperature() { class ForecastHourly (line 26) | public class ForecastHourly { class Hour (line 31) | public class Hour { method getCalendar (line 38) | public Calendar getCalendar() { FILE: app/src/main/java/com/morristaedt/mirror/requests/OpenWeatherRequest.java type OpenWeatherRequest (line 8) | public interface OpenWeatherRequest { method getCurrentForecast (line 13) | @GET("/data/2.5/weather") FILE: app/src/main/java/com/morristaedt/mirror/requests/OpenWeatherResponse.java class OpenWeatherResponse (line 9) | public class OpenWeatherResponse { method getWeatherDescription (line 14) | public String getWeatherDescription() { class Weather (line 21) | public class Weather { method getDescription (line 24) | public String getDescription() { method toString (line 28) | @Override class Main (line 34) | public class Main { method getDisplayTemperature (line 37) | public String getDisplayTemperature() { FILE: app/src/main/java/com/morristaedt/mirror/requests/XKCDRequest.java type XKCDRequest (line 8) | public interface XKCDRequest { method getLatestXKCD (line 10) | @GET("/info.0.json") FILE: app/src/main/java/com/morristaedt/mirror/requests/XKCDResponse.java class XKCDResponse (line 6) | public class XKCDResponse { FILE: app/src/main/java/com/morristaedt/mirror/requests/YahooFinanceRequest.java type YahooFinanceRequest (line 9) | public interface YahooFinanceRequest { method getStockData (line 11) | @GET("/yql") FILE: app/src/main/java/com/morristaedt/mirror/requests/YahooStockResponse.java class YahooStockResponse (line 11) | public class YahooStockResponse { class YahooQueryResponse (line 15) | private class YahooQueryResponse { class YahooResultsResponse (line 19) | private class YahooResultsResponse { class YahooQuoteResponse (line 23) | public class YahooQuoteResponse { method getPercentageChange (line 28) | public BigDecimal getPercentageChange() { method getQuoteResponse (line 39) | public YahooQuoteResponse getQuoteResponse() { FILE: app/src/main/java/com/morristaedt/mirror/utils/WeekUtil.java class WeekUtil (line 8) | public class WeekUtil { method isWeekday (line 10) | public static boolean isWeekday() { method afterFive (line 15) | public static boolean afterFive() { method isWeekdayBeforeFive (line 20) | public static boolean isWeekdayBeforeFive() { method isWeekdayAfterFive (line 24) | public static boolean isWeekdayAfterFive() {