/* * Geotoolkit - An Open Source Java GIS Toolkit * http://www.geotoolkit.org * * (C) 2010, Geomatys * * This library 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 2.1 of the License, or (at your option) any later version. * * This library 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. */ package org.geotoolkit.data.kml.model; import java.util.List; import org.geotoolkit.data.kml.xsd.SimpleTypeContainer; import static org.geotoolkit.data.kml.xml.KmlConstants.*; /** * * @author Samuel Andrés * @module */ public class DefaultScale extends DefaultAbstractObject implements Scale { private double x; private double y; private double z; /** * */ public DefaultScale() { this.x = DEF_X; this.y = DEF_Y; this.z = DEF_Z; } /** * * @param objectSimpleExtensions * @param idAttributes * @param x * @param y * @param z * @param scaleSimpleExtensions * @param scaleObjectExtensions */ public DefaultScale(List<SimpleTypeContainer> objectSimpleExtensions, IdAttributes idAttributes, double x, double y, double z, List<SimpleTypeContainer> scaleSimpleExtensions, List<Object> scaleObjectExtensions) { super(objectSimpleExtensions, idAttributes); this.x = x; this.y = y; this.z = z; if(scaleSimpleExtensions != null) this.extensions().simples(Extensions.Names.SCALE) .addAll(scaleSimpleExtensions); if(scaleObjectExtensions != null) this.extensions().complexes(Extensions.Names.SCALE) .addAll(scaleObjectExtensions); } /** * * @{@inheritDoc } */ @Override public double getX() { return this.x; } /** * * @{@inheritDoc } */ @Override public double getY() { return this.y; } /** * * @{@inheritDoc } */ @Override public double getZ() { return this.z; } /** * * @{@inheritDoc } */ @Override public void setX(double x) { this.x = x; } /** * * @{@inheritDoc } */ @Override public void setY(double y) { this.y = y; } /** * * @{@inheritDoc } */ @Override public void setZ(double z) { this.z = z; } }