Created
May 13, 2012 15:02
-
-
Save brokendish/2688842 to your computer and use it in GitHub Desktop.
AddDataModel
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 brokendish; | |
public class AddDataModel { | |
private String aaa; | |
private String bbb; | |
private String ccc; | |
public String getaaa() { | |
return aaa; | |
} | |
public String getbbb() { | |
return bbb; | |
} | |
public String getccc() { | |
return ccc; | |
} | |
public void setAaa(String job) { | |
this.aaa = aaa; | |
} | |
public void setBbb(String step) { | |
this.bbb = bbb; | |
} | |
public void setCcc(String file) { | |
this.ccc = ccc; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment