Skip to content

Instantly share code, notes, and snippets.

@brokendish
Created May 20, 2012 12:22
Show Gist options
  • Save brokendish/2757899 to your computer and use it in GitHub Desktop.
Save brokendish/2757899 to your computer and use it in GitHub Desktop.
NodeDataStruct
package brokendish;
public class NodeDataStruct {
private String hashcode;
private String node;
private String level;
private String index;
private String tekiyo;
public String getHashcode() {
return hashcode;
}
public String getNode() {
return node;
}
public String getLevel() {
return level;
}
public String getIndex() {
return index;
}
public String getTekiyo() {
return tekiyo;
}
public void setHashcode(String hashcode) {
this.hashcode = hashcode;
}
public void setNode(String node) {
this.node = node;
}
public void setLevel(String level) {
this.level = level;
}
public void setIndex(String index) {
this.index = index;
}
public void setTekiyo(String tekiyo) {
this.tekiyo = tekiyo;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment