Back to project page WhereIParked.
The source code is released under:
GNU General Public License
If you think the Android project WhereIParked listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.cachirulop.whereiparked.entity; //from w w w . j a v a 2s .c o m public class MapSubfile { private long _idMapSubfile; private long _idMapFile; private long _boundsTileLeft; private long _boundsTileRight; private long _boundsTileTop; private long _boundsTileBottom; private int _zoomLevel; public long getIdMapSubfile () { return _idMapSubfile; } public void setIdMapSubfile (long idMapSubfile) { this._idMapSubfile = idMapSubfile; } public long getIdMapFile () { return _idMapFile; } public void setIdMapFile (long idMapFile) { this._idMapFile = idMapFile; } public long getBoundsTileLeft () { return _boundsTileLeft; } public void setBoundsTileLeft (long boundsTileLeft) { this._boundsTileLeft = boundsTileLeft; } public long getBoundsTileRight () { return _boundsTileRight; } public void setBoundsTileRight (long boundsTileRight) { this._boundsTileRight = boundsTileRight; } public long getBoundsTileTop () { return _boundsTileTop; } public void setBoundsTileTop (long boundsTileTop) { this._boundsTileTop = boundsTileTop; } public long getBoundsTileBottom () { return _boundsTileBottom; } public void setBoundsTileBottom (long boundsTileBottom) { this._boundsTileBottom = boundsTileBottom; } public int getZoomLevel () { return _zoomLevel; } public void setZoomLevel (int zoomLevel) { this._zoomLevel = zoomLevel; } }