Update classes to use module, and make constructors consistent.

This commit is contained in:
Bryce Curtis
2010-09-03 17:24:55 -05:00
parent 5d83a44ec3
commit 40997b4cb8
11 changed files with 63 additions and 74 deletions
@@ -11,7 +11,7 @@ import android.database.Cursor;
import android.database.sqlite.SQLiteException;
@SuppressWarnings("deprecation")
public class ContactManager {
public class ContactManager extends Module {
public class ContactTriplet
{
@@ -27,8 +27,9 @@ public class ContactManager {
Uri mPhone = android.provider.Contacts.Phones.CONTENT_URI;
Uri mEmail = android.provider.Contacts.ContactMethods.CONTENT_URI;
ContactManager(WebView view, DroidGap app)
public ContactManager(WebView view, DroidGap app)
{
super(view, app);
mApp = app;
mView = view;
}