Cleanup (formatting/imports)

This commit is contained in:
Doug Keen 2012-10-21 12:31:39 -07:00
parent 5f04b943ea
commit 5b4efea2e2
3 changed files with 3 additions and 0 deletions

View File

@ -1,5 +1,6 @@
package com.dougkeen.bart.data;
public enum RoutesColumns {
_ID("_id", "INTEGER", false),
FROM_STATION("FROM_STATION", "TEXT", false),

View File

@ -1,5 +1,6 @@
package com.dougkeen.bart.model;
public interface TextProvider {
String getText(long tickNumber);

View File

@ -1,5 +1,6 @@
package com.dougkeen.util;
public interface Observer<T> {
void onUpdate(final T newValue);
}