Created
September 6, 2014 17:46
-
-
Save ejcer/42c0fbd02d6ace30b882 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
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