Android Open Source - lifesaver Session






From Project

Back to project page lifesaver.

License

The source code is released under:

Copyright (c) 2013 Nitin Dhar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Softwar...

If you think the Android project lifesaver 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.nitindhar.lifesaver.model;
//from ww w.ja va 2  s. c o m
public class Session {

    private final Subway mostRecentSubway;

    public Session(Subway mostRecentSubway) {
        this.mostRecentSubway = mostRecentSubway;
    }

    public Subway getMostRecentSubway() {
        return mostRecentSubway;
    }

}




Java Source Code List

com.nitindhar.lifesaver.LifesaverActivity.java
com.nitindhar.lifesaver.data.SessionDao.java
com.nitindhar.lifesaver.data.SessionSharedPreferencesDao.java
com.nitindhar.lifesaver.model.Session.java
com.nitindhar.lifesaver.model.Subway.java