Android Open Source - donatello-y-raphael Pack






From Project

Back to project page donatello-y-raphael.

License

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.

Java Source Code

package com.example.ATracePath;
/*from w  w w.  jav a 2  s  .  c  om*/
import java.util.List;

/**
 * Created by solberg on 21/09/14.
 */
public class Pack {

    private String mName;
    private String mDescription;
    private String mFile;
    private List<Challenge> challenge;

    Pack( String name, String description, String file )  {
        mName = name;
        mDescription = description;
        mFile = file;
        challenge = null;
    }

    void setChallenge(List<Challenge> _Challenge) {
        challenge = _Challenge;
    }

    public String getName() { return mName; }
    public String getDescription() { return mDescription; }
    public String getFile() { return mFile; }
    public List<Challenge> getChallenge() {return challenge; }
}




Java Source Code List

com.example.ATracePath.Board.java
com.example.ATracePath.Cellpath.java
com.example.ATracePath.Challenge.java
com.example.ATracePath.Coordinate.java
com.example.ATracePath.DbHelper.java
com.example.ATracePath.Global.java
com.example.ATracePath.LevelsActivity.java
com.example.ATracePath.MainActivity.java
com.example.ATracePath.MapsActivity.java
com.example.ATracePath.Pack.java
com.example.ATracePath.PlayActivity.java
com.example.ATracePath.ProgressAdapter.java
com.example.ATracePath.Puzzle.java
com.example.ATracePath.SettingsActivity.java