1 2 3 4 5 6 7
package cgeo.geocaching.utils; public interface RunnableWithArgument<T> { abstract void run(final T argument); }