public class

DynamicFormFlow

extends Object
implements Flow
java.lang.Object
   ↳ com.helpshift.support.flows.DynamicFormFlow

Class Overview

Use this to define a nested Dynamic form flow for dynamic forms.

Summary

Public Constructors
DynamicFormFlow(int labelResId, List<Flow> flowList)
Constructor to specify a Dynamic form flow with label string resource id and nested flows list.
DynamicFormFlow(String label, List<Flow> flowList)
Constructor to specify a Dynamic form flow with label string and nested flows list.
Public Methods
String getLabel()
Implement this method to return a string which will be used as your custom flow label.
[Expand]
Inherited Methods
From class java.lang.Object
From interface com.helpshift.support.flows.Flow

Public Constructors

public DynamicFormFlow (int labelResId, List<Flow> flowList)

Constructor to specify a Dynamic form flow with label string resource id and nested flows list.

Parameters
labelResId String resource id for flow label.
flowList List of nested flows.

public DynamicFormFlow (String label, List<Flow> flowList)

Constructor to specify a Dynamic form flow with label string and nested flows list.

Parameters
label String for flow label.
flowList List of nested flows.

Public Methods

public String getLabel ()

Implement this method to return a string which will be used as your custom flow label.

Returns
  • String value for label.