Skip to content

Instantly share code, notes, and snippets.

@lordofthejars
Created September 23, 2014 18:54
Show Gist options
  • Select an option

  • Save lordofthejars/6a352487612fcc05cc63 to your computer and use it in GitHub Desktop.

Select an option

Save lordofthejars/6a352487612fcc05cc63 to your computer and use it in GitHub Desktop.
public class Color {
@ObjectId
private String _id;
private String name;
private int r;
private int g;
private int b;
public Color() {
super();
}
public Color(String name, int r, int g, int b) {
super();
this.name = name;
this.r = r;
this.g = g;
this.b = b;
}
// getters and setters
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment