/* * Copyright 2010, 2011, 2012, 2013 mapsforge.org * * This program is free software: you can redistribute it and/or modify it under the * terms of the GNU Lesser General Public License as published by the Free Software * Foundation, either version 3 of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. * * 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/>. */ package org.mapsforge.map.layer.renderer; import android.graphics.Paint; class WayTextContainer { final Paint paint; final String text; final int x1; final int x2; final int y1; final int y2; WayTextContainer(int x1, int y1, int x2, int y2, String text, Paint paint) { this.x1 = x1; this.y1 = y1; this.x2 = x2; this.y2 = y2; this.text = text; this.paint = paint; } }