Created
February 13, 2014 22:49
-
-
Save alorma/8985551 to your computer and use it in GitHub Desktop.
Android interface to implement Data model contracts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.alorma.changetheworld.bbdd; | |
import android.provider.BaseColumns; | |
/** | |
* Created by Bernat on 11/02/14. | |
*/ | |
public interface Contract extends BaseColumns{ | |
String create(); | |
String alter(int oldVersion, int newVersion); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment