Back to project page geocamTalkForAndroid.
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 geocamTalkForAndroid listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package gov.nasa.arc.geocam.talk.service; //w ww . ja v a 2s .c o m import gov.nasa.arc.geocam.talk.bean.GeoCamTalkMessage; import java.sql.SQLException; import com.j256.ormlite.dao.Dao; // TODO: Auto-generated Javadoc /** * The Interface IDatabaseHelper. */ public interface IDatabaseHelper { /** * Gets the geo cam talk message dao. * * @return the geo cam talk message dao * @throws SQLException the sQL exception */ public Dao<GeoCamTalkMessage, Integer> getGeoCamTalkMessageDao() throws SQLException; }