/* * JGrass - Free Open Source Java GIS http://www.jgrass.org * (C) HydroloGIS - www.hydrologis.com * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by the Free * Software Foundation; either version 2 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 Library General Public License for more * details. * * You should have received a copy of the GNU Library General Public License * along with this library; if not, write to the Free Foundation, Inc., 59 * Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package org.jgrasstools.gears.modules.v.vectorconverter; import static org.jgrasstools.gears.i18n.GearsMessages.OMSVECTORCONVERTER_AUTHORCONTACTS; import static org.jgrasstools.gears.i18n.GearsMessages.OMSVECTORCONVERTER_AUTHORNAMES; import static org.jgrasstools.gears.i18n.GearsMessages.OMSVECTORCONVERTER_DESCRIPTION; import static org.jgrasstools.gears.i18n.GearsMessages.OMSVECTORCONVERTER_DOCUMENTATION; import static org.jgrasstools.gears.i18n.GearsMessages.OMSVECTORCONVERTER_KEYWORDS; import static org.jgrasstools.gears.i18n.GearsMessages.OMSVECTORCONVERTER_LABEL; import static org.jgrasstools.gears.i18n.GearsMessages.OMSVECTORCONVERTER_LICENSE; import static org.jgrasstools.gears.i18n.GearsMessages.OMSVECTORCONVERTER_NAME; import static org.jgrasstools.gears.i18n.GearsMessages.OMSVECTORCONVERTER_STATUS; import static org.jgrasstools.gears.i18n.GearsMessages.OMSVECTORCONVERTER_UI; import static org.jgrasstools.gears.i18n.GearsMessages.OMSVECTORCONVERTER_IN_GEODATA_DESCRIPTION; import static org.jgrasstools.gears.i18n.GearsMessages.OMSVECTORCONVERTER_OUT_GEODATA_DESCRIPTION; import oms3.annotations.Author; import oms3.annotations.Description; import oms3.annotations.Documentation; import oms3.annotations.Execute; import oms3.annotations.In; import oms3.annotations.Keywords; import oms3.annotations.Label; import oms3.annotations.License; import oms3.annotations.Name; import oms3.annotations.Out; import oms3.annotations.Status; import oms3.annotations.UI; import org.geotools.data.simple.SimpleFeatureCollection; import org.jgrasstools.gears.libs.modules.JGTModel; @Description(OMSVECTORCONVERTER_DESCRIPTION) @Documentation(OMSVECTORCONVERTER_DOCUMENTATION) @Author(name = OMSVECTORCONVERTER_AUTHORNAMES, contact = OMSVECTORCONVERTER_AUTHORCONTACTS) @Keywords(OMSVECTORCONVERTER_KEYWORDS) @Label(OMSVECTORCONVERTER_LABEL) @Name(OMSVECTORCONVERTER_NAME) @Status(OMSVECTORCONVERTER_STATUS) @License(OMSVECTORCONVERTER_LICENSE) @UI(OMSVECTORCONVERTER_UI) public class OmsVectorConverter extends JGTModel { @Description(OMSVECTORCONVERTER_IN_GEODATA_DESCRIPTION) @In public SimpleFeatureCollection inGeodata; @Description(OMSVECTORCONVERTER_OUT_GEODATA_DESCRIPTION) @Out public SimpleFeatureCollection outGeodata; @Execute public void process() throws Exception { checkNull(inGeodata); outGeodata = inGeodata; } }