public interface

Flow

com.helpshift.support.flows.Flow
Known Indirect Subclasses

Class Overview

Implement this interface when defining custom flows.

Summary

Public Methods
abstract String getLabel()
Implement this method to return a string which will be used as your custom flow label.
abstract int getLabelResId()
Implement this method to return a string resource which will be used as your custom flow label.
abstract void performAction()
Implement your custom flow actions inside the implementation for this method.

Public Methods

public abstract String getLabel ()

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

Returns
  • String value for label.

public abstract int getLabelResId ()

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

Returns
  • String resource id for label.

public abstract void performAction ()

Implement your custom flow actions inside the implementation for this method. performAction will be called when the user clicks the custom flow label and your actions will be executed.