Back to project page WizardPager.
The source code is released under:
Apache License
If you think the Android project WizardPager 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.tech.freak.wizardpager.model; /* w w w .j av a 2 s.com*/ import java.util.ArrayList; import android.support.v4.app.Fragment; import android.text.TextUtils; import com.tech.freak.wizardpager.ui.TextFragment; public class TextPage extends Page { public TextPage(ModelCallbacks callbacks, String title) { super(callbacks, title); } @Override public Fragment createFragment() { return TextFragment.create(getKey()); } @Override public void getReviewItems(ArrayList<ReviewItem> dest) { dest.add(new ReviewItem(getTitle(), mData.getString(SIMPLE_DATA_KEY), getKey())); } @Override public boolean isCompleted() { return !TextUtils.isEmpty(mData.getString(SIMPLE_DATA_KEY)); } public TextPage setValue(String value) { mData.putString(SIMPLE_DATA_KEY, value); return this; } }