/* * 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.sml.xml.v100; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; import org.geotoolkit.sml.xml.ComponentArray; /** * <p>Java class for ComponentArrayType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="ComponentArrayType"> * <complexContent> * <extension base="{http://www.opengis.net/sensorML/1.0}AbstractDerivableComponentType"> * <sequence> * <element ref="{http://www.opengis.net/sensorML/1.0}inputs" minOccurs="0"/> * <element ref="{http://www.opengis.net/sensorML/1.0}outputs" minOccurs="0"/> * <element name="parameters"> * <complexType> * <complexContent> * <restriction base="{http://www.opengis.net/sensorML/1.0}parametersPropertyType"> * <sequence minOccurs="0"> * <element name="ParameterList"> * <complexType> * <complexContent> * <restriction base="{http://www.opengis.net/sensorML/1.0}AbstractListType"> * <sequence> * <element name="index" maxOccurs="unbounded"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{http://www.opengis.net/swe/1.0}Count"/> * </sequence> * <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}token" /> * </restriction> * </complexContent> * </complexType> * </element> * <element name="parameter" type="{http://www.opengis.net/swe/1.0}DataComponentPropertyType" maxOccurs="unbounded"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * <element ref="{http://www.opengis.net/sensorML/1.0}components" minOccurs="0"/> * <element ref="{http://www.opengis.net/sensorML/1.0}positions" minOccurs="0"/> * <element ref="{http://www.opengis.net/sensorML/1.0}connections" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * * @module */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ComponentArrayType") public class ComponentArrayType extends AbstractDerivableComponentType implements ComponentArray{ public ComponentArrayType() { } public ComponentArrayType(final ComponentArray ca) { super(ca); } }