Back to project page lastfm-android-music-discovery.
The source code is released under:
Apache License
If you think the Android project lastfm-android-music-discovery 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.mikeladze.musicdiscovery.base.fragment; /* w ww. j ava 2s.c o m*/ import android.support.v4.app.Fragment; /** * This is base tab fragment used through out the app. It is required to guarantee that all * fragments provide a "Title" to be used for tabs. * * @author Tim Mikeladze */ public abstract class BaseTabFragment extends Fragment { /** * Gets the title. * * @return the title */ public abstract String getTitle(); }