Skip to content

Instantly share code, notes, and snippets.

@kmdupr33
Created May 8, 2015 10:30
Show Gist options
  • Save kmdupr33/310eee93627547b34c22 to your computer and use it in GitHub Desktop.
Save kmdupr33/310eee93627547b34c22 to your computer and use it in GitHub Desktop.
Showing Android-agnostic interface
package com.google.samples.apps.iosched.ui;
import android.os.Bundle;
import com.google.samples.apps.iosched.io.model.Session;
/**
*
* Created by MattDupree on 5/6/15.
*/
public interface SessionRepositoryManager {
void initRepository(int id, Bundle bundle, SessionRepositoryManagerCallbacks repositoryManagerCallbacks);
interface SessionRepositoryManagerCallbacks {
void onLoadFinished(Session session);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment