Package com.incode.welcome_sdk.modules
Class DynamicForms.Screen
-
- All Implemented Interfaces:
-
android.os.Parcelable
public final class DynamicForms.Screen extends BaseModule implements Parcelable
Represents a single screen that's part of a form. Each screen consists of:
- Since:
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classDynamicForms.Screen.QuestionRepresents a single question that's part of a Screen.
-
Constructor Summary
Constructors Constructor Description DynamicForms.Screen(String title, Boolean hideTitle, List<DynamicForms.Screen.Question> questions)
-
Method Summary
Modifier and Type Method Description final StringgetTitle()The text to show at the top of the screen final BooleangetHideTitle()Whether the title is shown (false) or not (true); Default is false final List<DynamicForms.Screen.Question>getQuestions()The list of Questions to ask on this Screen -
Methods inherited from class com.incode.welcome_sdk.modules.BaseModule
getName, isNonUiMode, verifyConfiguration -
Methods inherited from class android.os.Parcelable
describeContents, writeToParcel -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Constructor Detail
-
DynamicForms.Screen
DynamicForms.Screen(String title, Boolean hideTitle, List<DynamicForms.Screen.Question> questions)
-
-
Method Detail
-
getHideTitle
final Boolean getHideTitle()
Whether the title is shown (false) or not (true); Default is false
-
getQuestions
final List<DynamicForms.Screen.Question> getQuestions()
-
-
-
-