Copyright (c) 2012 Kirk Zurell
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Soft...
If you think the Android project rhetolog listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Java Source Code
package name.zurell.kirk.apps.android.rhetolog;
/*fromwww.java2s.com*//*
* Copyright (c) 2012 Kirk Zurell
*
* See the file LICENSE for copying permission.
*/import android.content.Context;
import android.net.Uri;
/**
* @author kirk
* Interface for anything that sends sessions (Main Application)
*/publicinterface SessionActor {
publicvoid onSessionSend (Context context, Uri session);
publicvoid onSessionDelete (Context context, Uri session);
publicvoid onSessionRename (Context context, Uri session, String newName);
public Uri onAddParticipant (Context context, Uri contactUri, Uri session);
public Uri onInsertEvent(String droppedFallacy, int participantId, Uri session, long timestamp);
}