Skip to content

Instantly share code, notes, and snippets.

@ejcer
Created September 6, 2014 17:46
Show Gist options
  • Save ejcer/42c0fbd02d6ace30b882 to your computer and use it in GitHub Desktop.
Save ejcer/42c0fbd02d6ace30b882 to your computer and use it in GitHub Desktop.
package com.noteworthy;
public class Contributor
{
int pictureResource;
String name;
String contributionClass;
int contributionAmt;
public Contributor(int pictureResource, String name, String contributionClass, int contributionAmt)
{
this.pictureResource = pictureResource;
this.name = name;
this.contributionClass = contributionClass;
this.contributionAmt = contributionAmt;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment