blob: f842b1695897964355182286581a0989e346352f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018
* IBM Corporation, BfR, and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* IBM Corporation - initial API and implementation and new features
* Bundesinstitut für Risikobewertung - Pajek Graph interface, new Veterinary Models
*******************************************************************************/
package org.eclipse.stem.gis.shp;
import org.eclipse.stem.gis.shp.type.Box;
import org.eclipse.stem.gis.shp.type.Part;
import org.eclipse.stem.gis.shp.type.Range;
public class ShpPolyLineZ extends ShpPolyLineM
{
protected Range zRange;
ShpPolyLineZ()
{
this(null,null,null,null);
}
public ShpPolyLineZ(Box boundingBox,Part[] parts, Range mRange, Range zRange)
{
super(boundingBox, parts, mRange);
this.zRange = zRange;
}
public Range getZRange() {
return zRange;
}
void setZRange(Range zRange) {
this.zRange = zRange;
}
public int getType()
{
return ShpConstants.SHP_POLY_LINE_Z;
}
}