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
| class MyRoutine { | |
| long id; | |
| long pos; | |
| String name; | |
| MyRoutine(int id, int pos, String name) { | |
| this.id = Long.valueOf(id); | |
| this.pos = Long.valueOf(pos); | |
| this.name = name; | |
| } |