Created
May 20, 2012 12:21
-
-
Save brokendish/2757895 to your computer and use it in GitHub Desktop.
PrefixDataStruct
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 PrefixDataStruct { | |
private String prefix; | |
private String cord; | |
private String index; | |
public String getPrefix() { | |
return prefix; | |
} | |
public String getCord() { | |
return cord; | |
} | |
public String getIndex() { | |
return index; | |
} | |
public void setPrefix(String prefix) { | |
this.prefix = prefix; | |
} | |
public void setCord(String cord) { | |
this.cord = cord; | |
} | |
public void setindex(String index) { | |
this.index = index; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment