MarkerItem: make properties mutable, closes #78

This commit is contained in:
Emux 2016-07-19 11:43:26 +03:00
parent 5fb07499a7
commit 166b0ab772

View File

@ -5,6 +5,7 @@
* Copyright 2012 Fred Eisele * Copyright 2012 Fred Eisele
* *
* Copyright 2014 Hannes Janetzek * Copyright 2014 Hannes Janetzek
* Copyright 2016 devemux86
* *
* This file is part of the OpenScienceMap project (http://www.opensciencemap.org). * This file is part of the OpenScienceMap project (http://www.opensciencemap.org).
* *
@ -19,7 +20,6 @@
* You should have received a copy of the GNU Lesser General Public License along with * You should have received a copy of the GNU Lesser General Public License along with
* this program. If not, see <http://www.gnu.org/licenses/>. * this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
package org.oscim.layers.marker; package org.oscim.layers.marker;
import org.oscim.core.GeoPoint; import org.oscim.core.GeoPoint;
@ -46,9 +46,9 @@ public class MarkerItem {
} }
public final Object uid; public final Object uid;
public final String title; public String title;
public final String description; public String description;
public final GeoPoint geoPoint; public GeoPoint geoPoint;
protected MarkerSymbol mMarker; protected MarkerSymbol mMarker;
/** /**