Back to project page geocamTalkAndroid.
The source code is released under:
NASA OPEN SOURCE AGREEMENT VERSION 1.3 THIS OPEN SOURCE AGREEMENT ("AGREEMENT") DEFINES THE RIGHTS OF USE, REPRODUCTION, DISTRIBUTION, MODIFICATION AND REDISTRIBUTION OF CERTAIN COMPUTER SOFTWARE ORI...
If you think the Android project geocamTalkAndroid listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
// __BEGIN_LICENSE__ // Copyright (C) 2008-2010 United States Government as represented by // the Administrator of the National Aeronautics and Space Administration. // All Rights Reserved. // __END_LICENSE__ /* w w w . j a v a2 s. co m*/ package gov.nasa.arc.geocam.talk; import gov.nasa.arc.geocam.talk.service.AudioPlayer; import gov.nasa.arc.geocam.talk.service.AudioRecorder; import gov.nasa.arc.geocam.talk.service.C2DMReciever; import gov.nasa.arc.geocam.talk.service.DatabaseHelper; import gov.nasa.arc.geocam.talk.service.GeoCamSynchronizationTimerTask; import gov.nasa.arc.geocam.talk.service.IAudioPlayer; import gov.nasa.arc.geocam.talk.service.IAudioRecorder; import gov.nasa.arc.geocam.talk.service.IDatabaseHelper; import gov.nasa.arc.geocam.talk.service.IGeoCamSynchronizationTimerTask; import gov.nasa.arc.geocam.talk.service.IIntentHelper; import gov.nasa.arc.geocam.talk.service.IMessageStore; import gov.nasa.arc.geocam.talk.service.ISiteAuth; import gov.nasa.arc.geocam.talk.service.ITalkJsonConverter; import gov.nasa.arc.geocam.talk.service.ITalkServer; import gov.nasa.arc.geocam.talk.service.IntentHelper; import gov.nasa.arc.geocam.talk.service.MessageStore; import gov.nasa.arc.geocam.talk.service.SiteAuthCookie; import gov.nasa.arc.geocam.talk.service.TalkJsonConverter; import gov.nasa.arc.geocam.talk.service.TalkServer; import roboguice.config.AbstractAndroidModule; import android.media.MediaPlayer; import com.google.inject.Scopes; /** * The Class GeoCamTalkModule. Used to bind implementations to interfaces via * robolectric. */ public class GeoCamTalkModule extends AbstractAndroidModule { /* * (non-Javadoc) * * @see com.google.inject.AbstractModule#configure() */ @Override protected void configure() { bind(ITalkServer.class).to(TalkServer.class); bind(IDatabaseHelper.class).to(DatabaseHelper.class); bind(IMessageStore.class).to(MessageStore.class); bind(IAudioRecorder.class).to(AudioRecorder.class); bind(IAudioPlayer.class).to(AudioPlayer.class).in(Scopes.SINGLETON); bind(ITalkJsonConverter.class).to(TalkJsonConverter.class); bind(ISiteAuth.class).to(SiteAuthCookie.class).in(Scopes.SINGLETON); bind(IIntentHelper.class).to(IntentHelper.class); bind(C2DMReciever.class).toInstance(new C2DMReciever()); bind(IGeoCamSynchronizationTimerTask.class).to( GeoCamSynchronizationTimerTask.class).in(Scopes.SINGLETON); bind(MediaPlayer.class).toInstance(new MediaPlayer()); } }