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 | Static Private Attributes | List of all members
org.buildmlearn.toolkit.videocollectiontemplate.data.VideoModel Class Reference

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

Inheritance diagram for org.buildmlearn.toolkit.videocollectiontemplate.data.VideoModel:
Inheritance graph
[legend]
Collaboration diagram for org.buildmlearn.toolkit.videocollectiontemplate.data.VideoModel:
Collaboration graph
[legend]

Public Member Functions

 VideoModel ()
 
int describeContents ()
 
void writeToParcel (Parcel dest, int flags)
 
String getTitle ()
 
void setTitle (String title)
 
String getDescription ()
 
void setDescription (String description)
 
String getThumbnailUrl ()
 
void setThumbnailUrl (String thumbnail_url)
 
String getLink ()
 
void setLink (String link)
 

Static Public Attributes

static final Parcelable.Creator< VideoModelCREATOR
 

Private Member Functions

 VideoModel (Parcel in)
 

Private Attributes

String title
 
String description
 
String link
 
String thumbnail_url
 

Static Private Attributes

static final String ROOT_TAG = "item"
 
static final String TITLE_TAG = "video_title"
 
static final String DESCRIPTION_TAG = "video_description"
 
static final String LINK_TAG = "video_link"
 
static final String THUMB_LINK_TAG = "video_thumb_link"
 

Detailed Description

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

Created by Anupam (opticod) on 12/5/16.

Constructor & Destructor Documentation

org.buildmlearn.toolkit.videocollectiontemplate.data.VideoModel.VideoModel ( )
org.buildmlearn.toolkit.videocollectiontemplate.data.VideoModel.VideoModel ( Parcel  in)
private

Member Function Documentation

int org.buildmlearn.toolkit.videocollectiontemplate.data.VideoModel.describeContents ( )
String org.buildmlearn.toolkit.videocollectiontemplate.data.VideoModel.getDescription ( )
String org.buildmlearn.toolkit.videocollectiontemplate.data.VideoModel.getLink ( )
String org.buildmlearn.toolkit.videocollectiontemplate.data.VideoModel.getThumbnailUrl ( )
String org.buildmlearn.toolkit.videocollectiontemplate.data.VideoModel.getTitle ( )
void org.buildmlearn.toolkit.videocollectiontemplate.data.VideoModel.setDescription ( String  description)
void org.buildmlearn.toolkit.videocollectiontemplate.data.VideoModel.setLink ( String  link)
void org.buildmlearn.toolkit.videocollectiontemplate.data.VideoModel.setThumbnailUrl ( String  thumbnail_url)
void org.buildmlearn.toolkit.videocollectiontemplate.data.VideoModel.setTitle ( String  title)
void org.buildmlearn.toolkit.videocollectiontemplate.data.VideoModel.writeToParcel ( Parcel  dest,
int  flags 
)

Member Data Documentation

final Parcelable.Creator<VideoModel> org.buildmlearn.toolkit.videocollectiontemplate.data.VideoModel.CREATOR
static
Initial value:
= new Parcelable.Creator<VideoModel>() {
@Override
public VideoModel createFromParcel(Parcel parcel) {
return new VideoModel(parcel);
}
@Override
public VideoModel[] newArray(int size) {
return new VideoModel[size];
}
}
String org.buildmlearn.toolkit.videocollectiontemplate.data.VideoModel.description
private
final String org.buildmlearn.toolkit.videocollectiontemplate.data.VideoModel.DESCRIPTION_TAG = "video_description"
staticprivate
String org.buildmlearn.toolkit.videocollectiontemplate.data.VideoModel.link
private
final String org.buildmlearn.toolkit.videocollectiontemplate.data.VideoModel.LINK_TAG = "video_link"
staticprivate
final String org.buildmlearn.toolkit.videocollectiontemplate.data.VideoModel.ROOT_TAG = "item"
staticprivate
final String org.buildmlearn.toolkit.videocollectiontemplate.data.VideoModel.THUMB_LINK_TAG = "video_thumb_link"
staticprivate
String org.buildmlearn.toolkit.videocollectiontemplate.data.VideoModel.thumbnail_url
private
String org.buildmlearn.toolkit.videocollectiontemplate.data.VideoModel.title
private
final String org.buildmlearn.toolkit.videocollectiontemplate.data.VideoModel.TITLE_TAG = "video_title"
staticprivate

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