Created
November 3, 2018 09:36
-
-
Save ajaypro/88a159ed4eb3205bc3a7288efea292ce to your computer and use it in GitHub Desktop.
Model Class - OfflineData.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package io.github.project_travel_mate.destinations.offlinedata; | |
import android.arch.persistence.room.ColumnInfo; | |
import android.arch.persistence.room.Entity; | |
import android.arch.persistence.room.PrimaryKey; | |
import android.arch.persistence.room.TypeConverters; | |
import android.content.Context; | |
import org.osmdroid.util.GeoPoint; | |
import java.io.Serializable; | |
import java.sql.Date; | |
import java.util.ArrayList; | |
import utils.DateConverter; | |
import utils.GeopointsConverter; | |
/** | |
* Created by Ajay Deepak on 29-10-2018. | |
*/ | |
@Entity (tableName = "offline_maps") | |
public class OfflineData implements Serializable { | |
private Context mContext; | |
@PrimaryKey(autoGenerate = true) | |
@ColumnInfo(name = "id") | |
private int mId = 0; | |
@ColumnInfo(name = "geopoint") | |
private GeoPoint mGeoPoint; | |
@ColumnInfo(name = "zoomin") | |
private int mZoomIn; | |
@ColumnInfo(name = "zoomout") | |
private int mZoomOut; | |
@ColumnInfo(name = "created_date") | |
private Date mCreatedDate; | |
public OfflineData(Context context, GeoPoint geoPoint, int zoomIn, int zoomOut) { | |
this.mContext = context; | |
this.mGeoPoint = geoPoint; | |
this.mZoomIn = zoomIn; | |
this.mZoomOut = zoomOut; | |
} | |
public Date getCreatedDate() { | |
return mCreatedDate; | |
} | |
public void setCreatedDate(Date mCreatedDate) { | |
this.mCreatedDate = mCreatedDate; | |
} | |
public int getmId() { | |
return mId; | |
} | |
public void setmId(int mId) { | |
this.mId = mId; | |
} | |
public Context getContext() { | |
return mContext; | |
} | |
public void setContext(Context context) { | |
this.mContext = context; | |
} | |
public GeoPoint getGeoPoints() { | |
return mGeoPoint; | |
} | |
public void setGeoPoints(GeoPoint geoPoints) { | |
this.mGeoPoint = geoPoints; | |
} | |
public int getZoomIn() { | |
return mZoomIn; | |
} | |
public void setZoomIn(int zoomIn) { | |
this.mZoomIn = zoomIn; | |
} | |
public int getZoomOut() { | |
return mZoomOut; | |
} | |
public void setZoomOut(int zoomOut) { | |
this.mZoomOut = zoomOut; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment