mirror of
https://github.com/antebudimir/tempus.git
synced 2026-01-02 02:13:33 +00:00
build: change of package name
This commit is contained in:
parent
49afdbe4eb
commit
b76a38cb30
274 changed files with 1981 additions and 2161 deletions
|
|
@ -0,0 +1,48 @@
|
|||
package com.cappielloantonio.tempo.interfaces;
|
||||
|
||||
|
||||
import android.os.Bundle;
|
||||
|
||||
public interface ClickCallback {
|
||||
default void onMediaClick(Bundle bundle) {}
|
||||
|
||||
default void onMediaLongClick(Bundle bundle) {}
|
||||
|
||||
default void onAlbumClick(Bundle bundle) {}
|
||||
|
||||
default void onAlbumLongClick(Bundle bundle) {}
|
||||
|
||||
default void onArtistClick(Bundle bundle) {}
|
||||
|
||||
default void onArtistLongClick(Bundle bundle) {}
|
||||
|
||||
default void onGenreClick(Bundle bundle) {}
|
||||
|
||||
default void onPlaylistClick(Bundle bundle) {}
|
||||
|
||||
default void onPlaylistLongClick(Bundle bundle) {}
|
||||
|
||||
default void onYearClick(Bundle bundle) {}
|
||||
|
||||
default void onServerClick(Bundle bundle) {}
|
||||
|
||||
default void onServerLongClick(Bundle bundle) {}
|
||||
|
||||
default void onPodcastEpisodeClick(Bundle bundle) {}
|
||||
|
||||
default void onPodcastEpisodeLongClick(Bundle bundle) {}
|
||||
|
||||
default void onPodcastChannelClick(Bundle bundle) {}
|
||||
|
||||
default void onPodcastChannelLongClick(Bundle bundle) {}
|
||||
|
||||
default void onInternetRadioStationClick(Bundle bundle) {}
|
||||
|
||||
default void onInternetRadioStationLongClick(Bundle bundle) {}
|
||||
|
||||
default void onMusicFolderClick(Bundle bundle) {}
|
||||
|
||||
default void onMusicDirectoryClick(Bundle bundle) {}
|
||||
|
||||
default void onMusicIndexClick(Bundle bundle) {}
|
||||
}
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
package com.cappielloantonio.tempo.interfaces;
|
||||
|
||||
|
||||
public interface DecadesCallback {
|
||||
void onLoadYear(int year);
|
||||
}
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
package com.cappielloantonio.tempo.interfaces;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public interface MediaCallback {
|
||||
|
||||
void onError(Exception exception);
|
||||
|
||||
void onLoadMedia(List<?> media);
|
||||
}
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
package com.cappielloantonio.tempo.interfaces;
|
||||
|
||||
public interface MediaIndexCallback {
|
||||
void onRecovery(int index);
|
||||
}
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
package com.cappielloantonio.tempo.interfaces;
|
||||
|
||||
public interface PodcastCallback {
|
||||
|
||||
void onDismiss();
|
||||
}
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
package com.cappielloantonio.tempo.interfaces;
|
||||
|
||||
public interface RadioCallback {
|
||||
|
||||
void onDismiss();
|
||||
}
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
package com.cappielloantonio.tempo.interfaces;
|
||||
|
||||
public interface ScanCallback {
|
||||
|
||||
void onError(Exception exception);
|
||||
|
||||
void onSuccess(boolean isScanning, long count);
|
||||
}
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
package com.cappielloantonio.tempo.interfaces;
|
||||
|
||||
public interface SystemCallback {
|
||||
|
||||
void onError(Exception exception);
|
||||
|
||||
void onSuccess(String password, String token, String salt);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue