Back to project page formulize-android.
The source code is released under:
GNU General Public License
If you think the Android project formulize-android 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 ca.formulize.android.data; // w w w. j av a 2 s .c om import android.provider.BaseColumns; public class FormulizeDBContract { public FormulizeDBContract() {} public static abstract class ConnectionEntry implements BaseColumns { public static final String TABLE_NAME = "ConnectionEntry"; public static final String COLUMN_NAME_CONNECTION_URL = "ConnectionURL"; public static final String COLUMN_NAME_CONNECTION_NAME = "ConnectionName"; public static final String COLUMN_NAME_USERNAME = "Username"; public static final String COLUMN_NAME_PASSWORD = "Password"; } }