Toolkit-mobile-templates  2.0.0
This repository contains the template applications of the toolkit.
Public Member Functions | Public Attributes | Private Member Functions | Private Attributes | List of all members
org.buildmlearn.dictation.data.DictModel Class Reference

Model used to save dict entries in database for comprehension template's app. More...

Inheritance diagram for org.buildmlearn.dictation.data.DictModel:
Inheritance graph
[legend]
Collaboration diagram for org.buildmlearn.dictation.data.DictModel:
Collaboration graph
[legend]

Public Member Functions

 DictModel ()
 
 DictModel (String title, String passage)
 
int describeContents ()
 
void writeToParcel (Parcel dest, int flags)
 
String getTitle ()
 
void setTitle (String title)
 
String getPassage ()
 
void setPassage (String passage)
 

Public Attributes

final Parcelable.Creator< DictModelCREATOR
 

Private Member Functions

 DictModel (Parcel in)
 

Private Attributes

String title
 
String passage
 

Detailed Description

Model used to save dict entries in database for comprehension template's app.

Created by Anupam (opticod) on 4/7/16.

Constructor & Destructor Documentation

org.buildmlearn.dictation.data.DictModel.DictModel ( )
org.buildmlearn.dictation.data.DictModel.DictModel ( String  title,
String  passage 
)
org.buildmlearn.dictation.data.DictModel.DictModel ( Parcel  in)
private

Member Function Documentation

int org.buildmlearn.dictation.data.DictModel.describeContents ( )
String org.buildmlearn.dictation.data.DictModel.getPassage ( )
String org.buildmlearn.dictation.data.DictModel.getTitle ( )
void org.buildmlearn.dictation.data.DictModel.setPassage ( String  passage)
void org.buildmlearn.dictation.data.DictModel.setTitle ( String  title)
void org.buildmlearn.dictation.data.DictModel.writeToParcel ( Parcel  dest,
int  flags 
)

Member Data Documentation

final Parcelable.Creator<DictModel> org.buildmlearn.dictation.data.DictModel.CREATOR
Initial value:
= new Parcelable.Creator<DictModel>() {
@Override
public DictModel createFromParcel(Parcel parcel) {
return new DictModel(parcel);
}
@Override
public DictModel[] newArray(int size) {
return new DictModel[size];
}
}
String org.buildmlearn.dictation.data.DictModel.passage
private
String org.buildmlearn.dictation.data.DictModel.title
private

The documentation for this class was generated from the following file: