Created
July 10, 2010 21:15
-
-
Save edipofederle/471035 to your computer and use it in GitHub Desktop.
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
| 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