Class IntroListEntry
-
- All Implemented Interfaces:
-
android.os.Parcelable
public final class IntroListEntry implements Parcelable
An entry in the list of scanning steps of the introduction screen.
-
-
Field Summary
Fields Modifier and Type Field Description private IntroImage
image
private StyledText
text
-
Constructor Summary
Constructors Constructor Description IntroListEntry(Map<String, Object> source)
IntroListEntry(JSONObject json)
IntroListEntry(IntroImage image, StyledText text)
-
Method Summary
Modifier and Type Method Description final IntroImage
getImage()
The image of the entry. final Unit
setImage(IntroImage image)
The image of the entry. final StyledText
getText()
The text of the entry. final Unit
setText(StyledText text)
The text of the entry. final JSONObject
toJson()
final static IntroListEntry
default()
-
-
Constructor Detail
-
IntroListEntry
IntroListEntry(JSONObject json)
-
IntroListEntry
IntroListEntry(IntroImage image, StyledText text)
-
-
Method Detail
-
getImage
final IntroImage getImage()
The image of the entry.
-
setImage
final Unit setImage(IntroImage image)
The image of the entry.
-
getText
final StyledText getText()
The text of the entry.
-
setText
final Unit setText(StyledText text)
The text of the entry.
-
toJson
final JSONObject toJson()
-
default
final static IntroListEntry default()
-
-
-
-