UnifiedNlp/src/org/microg/nlp/geocode/GeocodeService.java
mar-v-in 38cfcd7ff1 Added UI for config (config itself is missing though)
New way to directly call settings activity of backend (if set), see second sample
2014-03-06 13:20:58 +01:00

15 lines
313 B
Java

package org.microg.nlp.geocode;
import org.microg.nlp.ProviderService;
public abstract class GeocodeService extends ProviderService {
/**
* Creates an GeocodeService. Invoked by your subclass's constructor.
*
* @param tag Used for debugging.
*/
public GeocodeService(String tag) {
super(tag);
}
}