Renamed package to gramophone

This commit is contained in:
Karim Abou Zeid 2015-03-05 16:50:16 +01:00
commit c28a75c61a
95 changed files with 412 additions and 415 deletions

View file

@ -0,0 +1,10 @@
package com.kabouzeid.gramophone.interfaces;
/**
* Created by karim on 29.12.14.
*/
public interface KabSearchAbleFragment {
public void search(String query);
public void returnToNonSearch();
}

View file

@ -0,0 +1,12 @@
package com.kabouzeid.gramophone.interfaces;
/**
* Created by karim on 23.12.14.
*/
public interface KabViewsDisableAble {
public void enableViews();
public void disableViews();
public boolean areViewsEnabled();
}

View file

@ -0,0 +1,10 @@
package com.kabouzeid.gramophone.interfaces;
import com.kabouzeid.gramophone.model.MusicRemoteEvent;
/**
* Created by karim on 19.12.14.
*/
public interface OnMusicRemoteEventListener {
public void onMusicRemoteEvent(MusicRemoteEvent event);
}