Skip to content

Instantly share code, notes, and snippets.

@edipofederle
Created July 10, 2010 21:15
Show Gist options
  • Select an option

  • Save edipofederle/471035 to your computer and use it in GitHub Desktop.

Select an option

Save edipofederle/471035 to your computer and use it in GitHub Desktop.
public class Element {
private Integer value;
private Element ant;
public Element(Integer value){
this.value = value;
}
public Integer getElementValue(){
return this.value;
}
public Element getAntElement(){
return this.ant;
}
public void setAntElement(Element ant){
this.ant = ant;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment