Skip to content

Instantly share code, notes, and snippets.

@judeebene
Created April 2, 2017 20:58
Show Gist options
  • Save judeebene/0befef32d624475b7e81168e74ddd4ea to your computer and use it in GitHub Desktop.
Save judeebene/0befef32d624475b7e81168e74ddd4ea to your computer and use it in GitHub Desktop.
cheese without model package
package com.support.android.designlibdemo;
import android.widget.ImageView;
import java.util.Random;
import java.util.UUID;
public class Cheeses {
private UUID mId;
private String foodName;
private String directions;
private String ingredients;
int imageView;
//private int imageView;
public Cheeses() {
}
public void setTitle(String nameFood) {
foodName = nameFood;
}
public String getTitle() {
return foodName;
}
public void setDirections(String directions) {
this.directions = directions;
}
public String getDirections() {
return directions;
}
public void setIngredients(String ingredients) {
this.ingredients = ingredients;
}
public String setIngredients() {
return ingredients;
}
public UUID getId() {
return mId;
}
public int getImageView() {
return imageView;
}
public void setImageView(int imageView) {
this.imageView = imageView;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment