Cleanup (formatting/imports)
This commit is contained in:
parent
5f04b943ea
commit
5b4efea2e2
@ -1,5 +1,6 @@
|
|||||||
package com.dougkeen.bart.data;
|
package com.dougkeen.bart.data;
|
||||||
|
|
||||||
|
|
||||||
public enum RoutesColumns {
|
public enum RoutesColumns {
|
||||||
_ID("_id", "INTEGER", false),
|
_ID("_id", "INTEGER", false),
|
||||||
FROM_STATION("FROM_STATION", "TEXT", false),
|
FROM_STATION("FROM_STATION", "TEXT", false),
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
package com.dougkeen.bart.model;
|
package com.dougkeen.bart.model;
|
||||||
|
|
||||||
|
|
||||||
public interface TextProvider {
|
public interface TextProvider {
|
||||||
|
|
||||||
String getText(long tickNumber);
|
String getText(long tickNumber);
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
package com.dougkeen.util;
|
package com.dougkeen.util;
|
||||||
|
|
||||||
|
|
||||||
public interface Observer<T> {
|
public interface Observer<T> {
|
||||||
void onUpdate(final T newValue);
|
void onUpdate(final T newValue);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user