/* * Geotoolkit - An Open Source Java GIS Toolkit * http://www.geotoolkit.org * * (C) 2008 - 2009, 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.swe.xml.v101; import java.util.Objects; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; import org.apache.sis.util.ComparisonMode; import org.geotoolkit.util.Utilities; /** * Description of a set of Phenomena. * CompoundPhenomenon is the abstract head of a substitution group of specialized compound phenomena * * <p>Java class for CompoundPhenomenonType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="CompoundPhenomenonType"> * <complexContent> * <extension base="{http://www.opengis.net/swe/1.0.1}PhenomenonType"> * <attribute name="dimension" use="required" type="{http://www.w3.org/2001/XMLSchema}positiveInteger" /> * </extension> * </complexContent> * </complexType> * </pre> * * * @module */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CompoundPhenomenon") @XmlSeeAlso({ CompositePhenomenonType.class }) public abstract class CompoundPhenomenonType extends PhenomenonType { /** * The component number. */ @XmlAttribute(required = true) @XmlSchemaType(name = "positiveInteger") private int dimension; /** * An empty constructor used by JAXB */ CompoundPhenomenonType() { } /** * Build a new Compound phenomenon. */ public CompoundPhenomenonType(final String id, final String name, final String description, final int dimension) { super(id, name, description); this.dimension = dimension; } /** * Gets the value of the dimension property. */ public int getDimension() { return dimension; } /** * Sets the value of the dimension property. */ public void setDimension(final int dimension) { this.dimension = dimension; } /** * Return a code representing this composite phenomenon. */ @Override public int hashCode() { return getId().hashCode(); } /** * Verify if this entry is identical to specified object. */ @Override public boolean equals(final Object object, final ComparisonMode mode) { if (object == this) { return true; } if (object instanceof CompoundPhenomenonType && super.equals(object, mode)) { final CompoundPhenomenonType that = (CompoundPhenomenonType) object; return Objects.equals(this.dimension ,that.dimension); } return false; } @Override public String toString() { return super.toString() + " dimension:" + dimension + '\n'; } }