Created
November 26, 2015 11:16
-
-
Save mvniekerk/dec7bf640c9d559b3a14 to your computer and use it in GitHub Desktop.
A sample bean class
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
public class GiveItBeans { | |
private String stringBean; | |
private boolean wildValue; | |
public String getStringBean() { | |
return this.stringBean; | |
} | |
public void setStringBean(String stringBean) { | |
this.stringBean = stringBean; | |
} | |
public boolean isWildValue() { | |
return this.wildValue; | |
} | |
public void setWildValue(boolean value) { | |
this.wildValue = value; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment