BuildmLearn-Toolkit-Android  2.0.0
The Android version of the BuildmLearn Toolkit. BuildmLearn Toolkit is an easy-to-use program that helps the users make mobile apps without any knowledge of application development.
Public Member Functions | Static Public Attributes | Private Member Functions | Private Attributes | List of all members
org.buildmlearn.toolkit.learnspelling.data.SpellModel Class Reference

Model used to save spell entries in database for spell template's simulator. More...

Inheritance diagram for org.buildmlearn.toolkit.learnspelling.data.SpellModel:
Inheritance graph
[legend]
Collaboration diagram for org.buildmlearn.toolkit.learnspelling.data.SpellModel:
Collaboration graph
[legend]

Public Member Functions

 SpellModel ()
 
String getWord ()
 
void setWord (String word)
 
String getMeaning ()
 
void setMeaning (String meaning)
 
int describeContents ()
 
void writeToParcel (Parcel dest, int flags)
 

Static Public Attributes

static final Creator< SpellModelCREATOR
 

Private Member Functions

 SpellModel (Parcel in)
 

Private Attributes

String word
 
String meaning
 

Detailed Description

Model used to save spell entries in database for spell template's simulator.

Created by Anupam (opticod) on 1/6/16.

Constructor & Destructor Documentation

org.buildmlearn.toolkit.learnspelling.data.SpellModel.SpellModel ( Parcel  in)
private
org.buildmlearn.toolkit.learnspelling.data.SpellModel.SpellModel ( )

Member Function Documentation

int org.buildmlearn.toolkit.learnspelling.data.SpellModel.describeContents ( )
String org.buildmlearn.toolkit.learnspelling.data.SpellModel.getMeaning ( )
String org.buildmlearn.toolkit.learnspelling.data.SpellModel.getWord ( )
void org.buildmlearn.toolkit.learnspelling.data.SpellModel.setMeaning ( String  meaning)
void org.buildmlearn.toolkit.learnspelling.data.SpellModel.setWord ( String  word)
void org.buildmlearn.toolkit.learnspelling.data.SpellModel.writeToParcel ( Parcel  dest,
int  flags 
)

Member Data Documentation

final Creator<SpellModel> org.buildmlearn.toolkit.learnspelling.data.SpellModel.CREATOR
static
Initial value:
= new Creator<SpellModel>() {
@Override
public SpellModel createFromParcel(Parcel parcel) {
return new SpellModel(parcel);
}
@Override
public SpellModel[] newArray(int size) {
return new SpellModel[size];
}
}
String org.buildmlearn.toolkit.learnspelling.data.SpellModel.meaning
private
String org.buildmlearn.toolkit.learnspelling.data.SpellModel.word
private

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