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.videocollection.data.VideoModel Class Reference

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

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

Public Member Functions

 VideoModel ()
 
 VideoModel (String title, String description, String link, String thumbnail_url)
 
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)
 

Public Attributes

final Parcelable.Creator< VideoModelCREATOR
 

Private Member Functions

 VideoModel (Parcel in)
 

Private Attributes

String title
 
String description
 
String link
 
String thumbnail_url
 

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.videocollection.data.VideoModel.VideoModel ( )
org.buildmlearn.videocollection.data.VideoModel.VideoModel ( String  title,
String  description,
String  link,
String  thumbnail_url 
)
org.buildmlearn.videocollection.data.VideoModel.VideoModel ( Parcel  in)
private

Member Function Documentation

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

Member Data Documentation

final Parcelable.Creator<VideoModel> org.buildmlearn.videocollection.data.VideoModel.CREATOR
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.videocollection.data.VideoModel.description
private
String org.buildmlearn.videocollection.data.VideoModel.link
private
String org.buildmlearn.videocollection.data.VideoModel.thumbnail_url
private
String org.buildmlearn.videocollection.data.VideoModel.title
private

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