1
0
mirror of https://github.com/moparisthebest/Yaaic synced 2024-11-22 17:02:21 -05:00

Broadcast helper: Broadcast.createConversationIntent()

This commit is contained in:
Sebastian Kaspari 2010-03-14 22:20:39 +01:00
parent ce98d23b77
commit eb150c52e0

View File

@ -20,6 +20,8 @@ along with Yaaic. If not, see <http://www.gnu.org/licenses/>.
*/ */
package org.yaaic.model; package org.yaaic.model;
import android.content.Intent;
/** /**
* Constants and helpers for Broadcasts * Constants and helpers for Broadcasts
* *
@ -38,12 +40,19 @@ public abstract class Broadcast
/** /**
* Create an intent for conversation broadcasting * Create an intent for conversation broadcasting
* @param serverId *
* @param conversationName * @param broadcastType The type of the broadcast, some constant of Broadcast.*
* @param serverId The id of the server
* @param conversationName The unique name of the conversation
* @return * @return
*/ */
public static Intent createConversationIntent(int serverId, String conversationName) public static Intent createConversationIntent(String broadcastType, int serverId, String conversationName)
{ {
Intent intent = new Intent(broadcastType);
intent.putExtra(Broadcast.EXTRA_SERVER, serverId);
intent.putExtra(Broadcast.EXTRA_CONVERSATION, conversationName);
return intent;
} }
} }