Skip to content

Instantly share code, notes, and snippets.

@masazdream
Created December 9, 2014 14:50
Show Gist options
  • Save masazdream/388a65fb188e1ed69652 to your computer and use it in GitHub Desktop.
Save masazdream/388a65fb188e1ed69652 to your computer and use it in GitHub Desktop.
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