package com.gaiagps.iburn; /** * An interface for items that populate themselves based on a data subscription. * Created by dbro on 7/21/15. */ public interface Subscriber { void subscribeToData(); }