Created
December 9, 2014 14:50
-
-
Save masazdream/388a65fb188e1ed69652 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
public class Guiter implements BaseColumns { | |
public static final String GUITER_TABLE_NAME = "book"; | |
public static final String COLUMN_NAME_GUITER_NAME = "guiter_name"; | |
public static final String COLUMN_NAME_GUITER_MADE = "guiter_made"; | |
public static final String COLUMN_NAME_GUITER_PRICE = "guiter_price"; | |
private String mGuiterName; | |
private String mGuiterMade; | |
private int mGuiterPrice; | |
// getter and sette を用意 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment