Back to project page donatello-y-raphael.
The source code is released under:
MIT License
If you think the Android project donatello-y-raphael listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.example.ATracePath; /* www. j a v a2 s . com*/ import java.util.List; /** * Created by solberg on 21/09/14. */ public class Challenge { int id; String name; List<Puzzle> puzzleList; Challenge( int _id, String _name, List<Puzzle> _puzzleList) { id = _id; name = _name; puzzleList = _puzzleList; } public int getId() { return id; } public String getName() { return name; } public List<Puzzle> getPuzzleList() { return puzzleList; } }