MeteoSystem/app/src/main/java/cc/pogoda/mobile/pogodacc/type/StationActivityElements.java

17 wiersze
403 B
Java

package cc.pogoda.mobile.pogodacc.type;
import android.app.Activity;
import cc.pogoda.mobile.pogodacc.type.web.Summary;
/**
* This is an interface which is used to implement classes used for updating the activity content
* asynchronously (in the background)
*/
public interface StationActivityElements {
public void updateFromSummary(Summary s);
public void setActivity(Activity act);
}