/* * Geotoolkit - An Open Source Java GIS Toolkit * http://www.geotoolkit.org * * (C) 2008 - 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.sml.xml; import java.util.List; import org.geotoolkit.gml.xml.v311.StringOrRefType; import org.geotoolkit.swe.xml.DataComponentProperty; /** * * @author Guilhem Legal */ public interface AbstractEvent { String getDate(); void setDate(String value); StringOrRefType getDescription(); void setDescription(StringOrRefType value); List<? extends AbstractKeywords> getKeywords(); List<? extends AbstractIdentification> getIdentification(); List<? extends AbstractClassification> getClassification(); List<? extends AbstractContact> getContact(); List<? extends AbstractDocumentation> getDocumentation(); List<? extends DataComponentProperty> getProperty(); String getId(); void setId(String value); }