This file contains 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 Foo{ | |
private long id; | |
private int order; | |
private String name; | |
/*** | |
* Simple constructor | |
***/ | |
public Foo(){ | |
this.id = 1; |
NewerOlder