Created
May 20, 2012 12:22
-
-
Save brokendish/2757899 to your computer and use it in GitHub Desktop.
NodeDataStruct
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 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