Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 22ee3b2

Browse files
committed
Add some javadoc
1 parent 99f6c5f commit 22ee3b2

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

library/src/main/java/com/adstrosoftware/simpleopenhelper/SimpleOpenHelper.java

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
import java.io.InputStreamReader;
1414

1515
/**
16-
* TODO
16+
* An open helper that reads SQL statements from assses.
1717
*
1818
* @author Adam Stroud &#60;<a href="mailto:[email protected]">[email protected]</a>&#62;
1919
*/
@@ -23,6 +23,13 @@ public class SimpleOpenHelper extends SQLiteOpenHelper {
2323
private final Context context;
2424
private final String dbName;
2525

26+
/**
27+
* Creates a new instance of the simple open helper.
28+
*
29+
* @param context Context to to read assets. This will be help by the instance.
30+
* @param dbName The file name of the database
31+
* @param schemaVersion The version of the databse.
32+
*/
2633
public SimpleOpenHelper(Context context, String dbName, int schemaVersion) {
2734
super(context, dbName, null, schemaVersion);
2835

0 commit comments

Comments
 (0)