Return-Path: X-Original-To: apmail-sis-commits-archive@www.apache.org Delivered-To: apmail-sis-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 1EDDDF9E7 for ; Tue, 19 Mar 2013 22:05:49 +0000 (UTC) Received: (qmail 64866 invoked by uid 500); 19 Mar 2013 22:05:49 -0000 Delivered-To: apmail-sis-commits-archive@sis.apache.org Received: (qmail 64832 invoked by uid 500); 19 Mar 2013 22:05:48 -0000 Mailing-List: contact commits-help@sis.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: sis-dev@sis.apache.org Delivered-To: mailing list commits@sis.apache.org Received: (qmail 64824 invoked by uid 99); 19 Mar 2013 22:05:48 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 19 Mar 2013 22:05:48 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 19 Mar 2013 22:05:44 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 26CB22388A32; Tue, 19 Mar 2013 22:05:24 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: svn commit: r1458538 [4/5] - in /sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis: internal/jaxb/geometry/ internal/jaxb/gmi/ internal/jaxb/gts/ internal/jaxb/metadata/ referencing/ Date: Tue, 19 Mar 2013 22:05:17 -0000 To: commits@sis.apache.org From: desruisseaux@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130319220524.26CB22388A32@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Added: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MD_RangeDimension.java URL: http://svn.apache.org/viewvc/sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MD_RangeDimension.java?rev=1458538&view=auto ============================================================================== --- sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MD_RangeDimension.java (added) +++ sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MD_RangeDimension.java [UTF-8] Tue Mar 19 22:05:15 2013 @@ -0,0 +1,99 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.sis.internal.jaxb.metadata; + +import javax.xml.bind.annotation.XmlElementRef; +import org.opengis.metadata.content.Band; +import org.opengis.metadata.content.RangeDimension; +import org.apache.sis.internal.jaxb.gmi.MI_Band; +import org.apache.sis.internal.jaxb.gco.PropertyType; +import org.apache.sis.metadata.iso.content.DefaultRangeDimension; + + +/** + * JAXB adapter mapping implementing class to the GeoAPI interface. See + * package documentation for more information about JAXB and interface. + * + * @author Cédric Briançon (Geomatys) + * @author Martin Desruisseaux (Geomatys) + * @since 0.3 (derived from geotk-2.5) + * @version 0.3 + * @module + */ +public final class MD_RangeDimension extends PropertyType { + /** + * Empty constructor for JAXB only. + */ + public MD_RangeDimension() { + } + + /** + * Returns the GeoAPI interface which is bound by this adapter. + * This method is indirectly invoked by the private constructor + * below, so it shall not depend on the state of this object. + */ + @Override + protected Class getBoundType() { + return RangeDimension.class; + } + + /** + * Constructor for the {@link #wrap} method only. + */ + private MD_RangeDimension(final RangeDimension metadata) { + super(metadata); + } + + /** + * Invoked by {@link PropertyType} at marshalling time for wrapping the given metadata value + * in a {@code } XML element. + * + * @param metadata The metadata element to marshall. + * @return A {@code PropertyType} wrapping the given the metadata element. + */ + @Override + protected MD_RangeDimension wrap(final RangeDimension metadata) { + return new MD_RangeDimension(metadata); + } + + /** + * Invoked by JAXB at marshalling time for getting the actual metadata to write + * inside the {@code } XML element. + * This is the value or a copy of the value given in argument to the {@code wrap} method. + * + * @return The metadata to be marshalled. + */ + @Override + @XmlElementRef + public DefaultRangeDimension getElement() { + if (skip()) return null; + final RangeDimension metadata = this.metadata; + if (metadata instanceof Band) { + return MI_Band.castOrCopy((Band) metadata); + } + return DefaultRangeDimension.castOrCopy(metadata); + } + + /** + * Invoked by JAXB at unmarshalling time for storing the result temporarily. + * + * @param metadata The unmarshalled metadata. + */ + public void setElement(final DefaultRangeDimension metadata) { + this.metadata = metadata; + } +} Propchange: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MD_RangeDimension.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MD_RangeDimension.java ------------------------------------------------------------------------------ svn:mime-type = text/plain;charset=UTF-8 Added: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MD_RepresentativeFraction.java URL: http://svn.apache.org/viewvc/sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MD_RepresentativeFraction.java?rev=1458538&view=auto ============================================================================== --- sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MD_RepresentativeFraction.java (added) +++ sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MD_RepresentativeFraction.java [UTF-8] Tue Mar 19 22:05:15 2013 @@ -0,0 +1,94 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.sis.internal.jaxb.metadata; + +import javax.xml.bind.annotation.XmlElementRef; +import org.opengis.metadata.identification.RepresentativeFraction; +import org.apache.sis.metadata.iso.identification.DefaultRepresentativeFraction; +import org.apache.sis.internal.jaxb.gco.PropertyType; + + +/** + * JAXB adapter mapping implementing class to the GeoAPI interface. See + * package documentation for more information about JAXB and interface. + * + * @author Cédric Briançon (Geomatys) + * @author Martin Desruisseaux (Geomatys) + * @since 0.3 (derived from geotk-2.5) + * @version 0.3 + * @module + */ +public final class MD_RepresentativeFraction extends + PropertyType +{ + /** + * Empty constructor for JAXB only. + */ + public MD_RepresentativeFraction() { + } + + /** + * Returns the GeoAPI interface which is bound by this adapter. + * This method is indirectly invoked by the private constructor + * below, so it shall not depend on the state of this object. + */ + @Override + protected Class getBoundType() { + return RepresentativeFraction.class; + } + + /** + * Constructor for the {@link #wrap} method only. + */ + private MD_RepresentativeFraction(final RepresentativeFraction metadata) { + super(metadata); + } + + /** + * Invoked by {@link PropertyType} at marshalling time for wrapping the given metadata value + * in a {@code } XML element. + * + * @param metadata The metadata element to marshall. + * @return A {@code PropertyType} wrapping the given the metadata element. + */ + @Override + protected MD_RepresentativeFraction wrap(final RepresentativeFraction metadata) { + return new MD_RepresentativeFraction(metadata); + } + + /** + * Invoked by JAXB at marshalling time for getting the actual metadata to write + * inside the {@code } XML element. + * This is the value or a copy of the value given in argument to the {@code wrap} method. + * + * @return The metadata to be marshalled. + */ + @Override + @XmlElementRef + public DefaultRepresentativeFraction getElement() { + return skip() ? null : DefaultRepresentativeFraction.castOrCopy(metadata); + } + + /** + * Invoked by JAXB at unmarshalling time for storing the result temporarily. + * + * @param metadata The unmarshalled metadata. + */ + public void setElement(final DefaultRepresentativeFraction metadata) { + this.metadata = metadata; + } +} Propchange: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MD_RepresentativeFraction.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MD_RepresentativeFraction.java ------------------------------------------------------------------------------ svn:mime-type = text/plain;charset=UTF-8 Added: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MD_Resolution.java URL: http://svn.apache.org/viewvc/sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MD_Resolution.java?rev=1458538&view=auto ============================================================================== --- sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MD_Resolution.java (added) +++ sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MD_Resolution.java [UTF-8] Tue Mar 19 22:05:15 2013 @@ -0,0 +1,92 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.sis.internal.jaxb.metadata; + +import javax.xml.bind.annotation.XmlElementRef; +import org.opengis.metadata.identification.Resolution; +import org.apache.sis.metadata.iso.identification.DefaultResolution; +import org.apache.sis.internal.jaxb.gco.PropertyType; + + +/** + * JAXB adapter mapping implementing class to the GeoAPI interface. See + * package documentation for more information about JAXB and interface. + * + * @author Cédric Briançon (Geomatys) + * @author Martin Desruisseaux (Geomatys) + * @since 0.3 (derived from geotk-2.5) + * @version 0.3 + * @module + */ +public final class MD_Resolution extends PropertyType { + /** + * Empty constructor for JAXB only. + */ + public MD_Resolution() { + } + + /** + * Returns the GeoAPI interface which is bound by this adapter. + * This method is indirectly invoked by the private constructor + * below, so it shall not depend on the state of this object. + */ + @Override + protected Class getBoundType() { + return Resolution.class; + } + + /** + * Constructor for the {@link #wrap} method only. + */ + private MD_Resolution(final Resolution metadata) { + super(metadata); + } + + /** + * Invoked by {@link PropertyType} at marshalling time for wrapping the given metadata value + * in a {@code } XML element. + * + * @param metadata The metadata element to marshall. + * @return A {@code PropertyType} wrapping the given the metadata element. + */ + @Override + protected MD_Resolution wrap(final Resolution metadata) { + return new MD_Resolution(metadata); + } + + /** + * Invoked by JAXB at marshalling time for getting the actual metadata to write + * inside the {@code } XML element. + * This is the value or a copy of the value given in argument to the {@code wrap} method. + * + * @return The metadata to be marshalled. + */ + @Override + @XmlElementRef + public DefaultResolution getElement() { + return skip() ? null : DefaultResolution.castOrCopy(metadata); + } + + /** + * Invoked by JAXB at unmarshalling time for storing the result temporarily. + * + * @param metadata The unmarshalled metadata. + */ + public void setElement(final DefaultResolution metadata) { + this.metadata = metadata; + } +} Propchange: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MD_Resolution.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MD_Resolution.java ------------------------------------------------------------------------------ svn:mime-type = text/plain;charset=UTF-8 Added: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MD_ScopeDescription.java URL: http://svn.apache.org/viewvc/sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MD_ScopeDescription.java?rev=1458538&view=auto ============================================================================== --- sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MD_ScopeDescription.java (added) +++ sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MD_ScopeDescription.java [UTF-8] Tue Mar 19 22:05:15 2013 @@ -0,0 +1,92 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.sis.internal.jaxb.metadata; + +import javax.xml.bind.annotation.XmlElementRef; +import org.opengis.metadata.maintenance.ScopeDescription; +import org.apache.sis.metadata.iso.maintenance.DefaultScopeDescription; +import org.apache.sis.internal.jaxb.gco.PropertyType; + + +/** + * JAXB adapter mapping implementing class to the GeoAPI interface. See + * package documentation for more information about JAXB and interface. + * + * @author Cédric Briançon (Geomatys) + * @author Martin Desruisseaux (Geomatys) + * @since 0.3 (derived from geotk-3.02) + * @version 0.3 + * @module + */ +public final class MD_ScopeDescription extends PropertyType { + /** + * Empty constructor for JAXB only. + */ + public MD_ScopeDescription() { + } + + /** + * Returns the GeoAPI interface which is bound by this adapter. + * This method is indirectly invoked by the private constructor + * below, so it shall not depend on the state of this object. + */ + @Override + protected Class getBoundType() { + return ScopeDescription.class; + } + + /** + * Constructor for the {@link #wrap} method only. + */ + private MD_ScopeDescription(final ScopeDescription metadata) { + super(metadata); + } + + /** + * Invoked by {@link PropertyType} at marshalling time for wrapping the given metadata value + * in a {@code } XML element. + * + * @param metadata The metadata element to marshall. + * @return A {@code PropertyType} wrapping the given the metadata element. + */ + @Override + protected MD_ScopeDescription wrap(final ScopeDescription metadata) { + return new MD_ScopeDescription(metadata); + } + + /** + * Invoked by JAXB at marshalling time for getting the actual metadata to write + * inside the {@code } XML element. + * This is the value or a copy of the value given in argument to the {@code wrap} method. + * + * @return The metadata to be marshalled. + */ + @Override + @XmlElementRef + public DefaultScopeDescription getElement() { + return skip() ? null : DefaultScopeDescription.castOrCopy(metadata); + } + + /** + * Invoked by JAXB at unmarshalling time for storing the result temporarily. + * + * @param metadata The unmarshalled metadata. + */ + public void setElement(final DefaultScopeDescription metadata) { + this.metadata = metadata; + } +} Propchange: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MD_ScopeDescription.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MD_ScopeDescription.java ------------------------------------------------------------------------------ svn:mime-type = text/plain;charset=UTF-8 Added: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MD_SpatialRepresentation.java URL: http://svn.apache.org/viewvc/sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MD_SpatialRepresentation.java?rev=1458538&view=auto ============================================================================== --- sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MD_SpatialRepresentation.java (added) +++ sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MD_SpatialRepresentation.java [UTF-8] Tue Mar 19 22:05:15 2013 @@ -0,0 +1,106 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.sis.internal.jaxb.metadata; + +import javax.xml.bind.annotation.XmlElementRef; +import org.opengis.metadata.spatial.Georectified; +import org.opengis.metadata.spatial.Georeferenceable; +import org.opengis.metadata.spatial.SpatialRepresentation; +import org.apache.sis.internal.jaxb.gco.PropertyType; +import org.apache.sis.internal.jaxb.gmi.MI_Georectified; +import org.apache.sis.internal.jaxb.gmi.MI_Georeferenceable; +import org.apache.sis.metadata.iso.spatial.AbstractSpatialRepresentation; + + +/** + * JAXB adapter mapping implementing class to the GeoAPI interface. See + * package documentation for more information about JAXB and interface. + * + * @author Cédric Briançon (Geomatys) + * @author Martin Desruisseaux (Geomatys) + * @since 0.3 (derived from geotk-2.5) + * @version 0.3 + * @module + */ +public final class MD_SpatialRepresentation extends + PropertyType +{ + /** + * Empty constructor for JAXB only. + */ + public MD_SpatialRepresentation() { + } + + /** + * Returns the GeoAPI interface which is bound by this adapter. + * This method is indirectly invoked by the private constructor + * below, so it shall not depend on the state of this object. + */ + @Override + protected Class getBoundType() { + return SpatialRepresentation.class; + } + + /** + * Constructor for the {@link #wrap} method only. + */ + private MD_SpatialRepresentation(final SpatialRepresentation metadata) { + super(metadata); + } + + /** + * Invoked by {@link PropertyType} at marshalling time for wrapping the given metadata value + * in a {@code } XML element. + * + * @param metadata The metadata element to marshall. + * @return A {@code PropertyType} wrapping the given the metadata element. + */ + @Override + protected MD_SpatialRepresentation wrap(final SpatialRepresentation metadata) { + return new MD_SpatialRepresentation(metadata); + } + + /** + * Invoked by JAXB at marshalling time for getting the actual metadata to write + * inside the {@code } XML element. + * This is the value or a copy of the value given in argument to the {@code wrap} method. + * + * @return The metadata to be marshalled. + */ + @Override + @XmlElementRef + public AbstractSpatialRepresentation getElement() { + if (skip()) return null; + final SpatialRepresentation metadata = this.metadata; + if (metadata instanceof Georectified) { + return MI_Georectified.castOrCopy((Georectified) metadata); + } + if (metadata instanceof Georeferenceable) { + return MI_Georeferenceable.castOrCopy((Georeferenceable) metadata); + } + return AbstractSpatialRepresentation.castOrCopy(metadata); + } + + /** + * Invoked by JAXB at unmarshalling time for storing the result temporarily. + * + * @param metadata The unmarshalled metadata. + */ + public void setElement(final AbstractSpatialRepresentation metadata) { + this.metadata = metadata; + } +} Propchange: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MD_SpatialRepresentation.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MD_SpatialRepresentation.java ------------------------------------------------------------------------------ svn:mime-type = text/plain;charset=UTF-8 Added: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MD_StandardOrderProcess.java URL: http://svn.apache.org/viewvc/sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MD_StandardOrderProcess.java?rev=1458538&view=auto ============================================================================== --- sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MD_StandardOrderProcess.java (added) +++ sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MD_StandardOrderProcess.java [UTF-8] Tue Mar 19 22:05:15 2013 @@ -0,0 +1,94 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.sis.internal.jaxb.metadata; + +import javax.xml.bind.annotation.XmlElementRef; +import org.opengis.metadata.distribution.StandardOrderProcess; +import org.apache.sis.metadata.iso.distribution.DefaultStandardOrderProcess; +import org.apache.sis.internal.jaxb.gco.PropertyType; + + +/** + * JAXB adapter mapping implementing class to the GeoAPI interface. See + * package documentation for more information about JAXB and interface. + * + * @author Cédric Briançon (Geomatys) + * @author Martin Desruisseaux (Geomatys) + * @since 0.3 (derived from geotk-2.5) + * @version 0.3 + * @module + */ +public final class MD_StandardOrderProcess extends + PropertyType +{ + /** + * Empty constructor for JAXB only. + */ + public MD_StandardOrderProcess() { + } + + /** + * Returns the GeoAPI interface which is bound by this adapter. + * This method is indirectly invoked by the private constructor + * below, so it shall not depend on the state of this object. + */ + @Override + protected Class getBoundType() { + return StandardOrderProcess.class; + } + + /** + * Constructor for the {@link #wrap} method only. + */ + private MD_StandardOrderProcess(final StandardOrderProcess metadata) { + super(metadata); + } + + /** + * Invoked by {@link PropertyType} at marshalling time for wrapping the given metadata value + * in a {@code } XML element. + * + * @param metadata The metadata element to marshall. + * @return A {@code PropertyType} wrapping the given the metadata element. + */ + @Override + protected MD_StandardOrderProcess wrap(final StandardOrderProcess metadata) { + return new MD_StandardOrderProcess(metadata); + } + + /** + * Invoked by JAXB at marshalling time for getting the actual metadata to write + * inside the {@code } XML element. + * This is the value or a copy of the value given in argument to the {@code wrap} method. + * + * @return The metadata to be marshalled. + */ + @Override + @XmlElementRef + public DefaultStandardOrderProcess getElement() { + return skip() ? null : DefaultStandardOrderProcess.castOrCopy(metadata); + } + + /** + * Invoked by JAXB at unmarshalling time for storing the result temporarily. + * + * @param metadata The unmarshalled metadata. + */ + public void setElement(final DefaultStandardOrderProcess metadata) { + this.metadata = metadata; + } +} Propchange: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MD_StandardOrderProcess.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MD_StandardOrderProcess.java ------------------------------------------------------------------------------ svn:mime-type = text/plain;charset=UTF-8 Added: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MD_Usage.java URL: http://svn.apache.org/viewvc/sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MD_Usage.java?rev=1458538&view=auto ============================================================================== --- sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MD_Usage.java (added) +++ sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MD_Usage.java [UTF-8] Tue Mar 19 22:05:15 2013 @@ -0,0 +1,92 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.sis.internal.jaxb.metadata; + +import javax.xml.bind.annotation.XmlElementRef; +import org.opengis.metadata.identification.Usage; +import org.apache.sis.metadata.iso.identification.DefaultUsage; +import org.apache.sis.internal.jaxb.gco.PropertyType; + + +/** + * JAXB adapter mapping implementing class to the GeoAPI interface. See + * package documentation for more information about JAXB and interface. + * + * @author Cédric Briançon (Geomatys) + * @author Martin Desruisseaux (Geomatys) + * @since 0.3 (derived from geotk-2.5) + * @version 0.3 + * @module + */ +public final class MD_Usage extends PropertyType { + /** + * Empty constructor for JAXB only. + */ + public MD_Usage() { + } + + /** + * Returns the GeoAPI interface which is bound by this adapter. + * This method is indirectly invoked by the private constructor + * below, so it shall not depend on the state of this object. + */ + @Override + protected Class getBoundType() { + return Usage.class; + } + + /** + * Constructor for the {@link #wrap} method only. + */ + private MD_Usage(final Usage metadata) { + super(metadata); + } + + /** + * Invoked by {@link PropertyType} at marshalling time for wrapping the given metadata value + * in a {@code } XML element. + * + * @param metadata The metadata element to marshall. + * @return A {@code PropertyType} wrapping the given the metadata element. + */ + @Override + protected MD_Usage wrap(final Usage metadata) { + return new MD_Usage(metadata); + } + + /** + * Invoked by JAXB at marshalling time for getting the actual metadata to write + * inside the {@code } XML element. + * This is the value or a copy of the value given in argument to the {@code wrap} method. + * + * @return The metadata to be marshalled. + */ + @Override + @XmlElementRef + public DefaultUsage getElement() { + return skip() ? null : DefaultUsage.castOrCopy(metadata); + } + + /** + * Invoked by JAXB at unmarshalling time for storing the result temporarily. + * + * @param metadata The unmarshalled metadata. + */ + public void setElement(final DefaultUsage metadata) { + this.metadata = metadata; + } +} Propchange: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MD_Usage.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MD_Usage.java ------------------------------------------------------------------------------ svn:mime-type = text/plain;charset=UTF-8 Added: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_AcquisitionInformation.java URL: http://svn.apache.org/viewvc/sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_AcquisitionInformation.java?rev=1458538&view=auto ============================================================================== --- sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_AcquisitionInformation.java (added) +++ sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_AcquisitionInformation.java [UTF-8] Tue Mar 19 22:05:15 2013 @@ -0,0 +1,94 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.sis.internal.jaxb.metadata; + +import javax.xml.bind.annotation.XmlElementRef; +import org.opengis.metadata.acquisition.AcquisitionInformation; +import org.apache.sis.metadata.iso.acquisition.DefaultAcquisitionInformation; +import org.apache.sis.internal.jaxb.gco.PropertyType; + + +/** + * JAXB adapter mapping implementing class to the GeoAPI interface. See + * package documentation for more information about JAXB and interface. + * + * @author Cédric Briançon (Geomatys) + * @author Martin Desruisseaux (Geomatys) + * @since 0.3 (derived from geotk-3.02) + * @version 0.3 + * @module + */ +public final class MI_AcquisitionInformation extends + PropertyType +{ + /** + * Empty constructor for JAXB only. + */ + public MI_AcquisitionInformation() { + } + + /** + * Returns the GeoAPI interface which is bound by this adapter. + * This method is indirectly invoked by the private constructor + * below, so it shall not depend on the state of this object. + */ + @Override + protected Class getBoundType() { + return AcquisitionInformation.class; + } + + /** + * Constructor for the {@link #wrap} method only. + */ + private MI_AcquisitionInformation(final AcquisitionInformation metadata) { + super(metadata); + } + + /** + * Invoked by {@link PropertyType} at marshalling time for wrapping the given metadata value + * in a {@code } XML element. + * + * @param metadata The metadata element to marshall. + * @return A {@code PropertyType} wrapping the given the metadata element. + */ + @Override + protected MI_AcquisitionInformation wrap(final AcquisitionInformation metadata) { + return new MI_AcquisitionInformation(metadata); + } + + /** + * Invoked by JAXB at marshalling time for getting the actual metadata to write + * inside the {@code } XML element. + * This is the value or a copy of the value given in argument to the {@code wrap} method. + * + * @return The metadata to be marshalled. + */ + @Override + @XmlElementRef + public DefaultAcquisitionInformation getElement() { + return skip() ? null : DefaultAcquisitionInformation.castOrCopy(metadata); + } + + /** + * Invoked by JAXB at unmarshalling time for storing the result temporarily. + * + * @param metadata The unmarshalled metadata. + */ + public void setElement(final DefaultAcquisitionInformation metadata) { + this.metadata = metadata; + } +} Propchange: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_AcquisitionInformation.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_AcquisitionInformation.java ------------------------------------------------------------------------------ svn:mime-type = text/plain;charset=UTF-8 Added: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_EnvironmentalRecord.java URL: http://svn.apache.org/viewvc/sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_EnvironmentalRecord.java?rev=1458538&view=auto ============================================================================== --- sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_EnvironmentalRecord.java (added) +++ sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_EnvironmentalRecord.java [UTF-8] Tue Mar 19 22:05:15 2013 @@ -0,0 +1,94 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.sis.internal.jaxb.metadata; + +import javax.xml.bind.annotation.XmlElementRef; +import org.opengis.metadata.acquisition.EnvironmentalRecord; +import org.apache.sis.metadata.iso.acquisition.DefaultEnvironmentalRecord; +import org.apache.sis.internal.jaxb.gco.PropertyType; + + +/** + * JAXB adapter mapping implementing class to the GeoAPI interface. See + * package documentation for more information about JAXB and interface. + * + * @author Cédric Briançon (Geomatys) + * @author Martin Desruisseaux (Geomatys) + * @since 0.3 (derived from geotk-3.02) + * @version 0.3 + * @module + */ +public final class MI_EnvironmentalRecord extends + PropertyType +{ + /** + * Empty constructor for JAXB only. + */ + public MI_EnvironmentalRecord() { + } + + /** + * Returns the GeoAPI interface which is bound by this adapter. + * This method is indirectly invoked by the private constructor + * below, so it shall not depend on the state of this object. + */ + @Override + protected Class getBoundType() { + return EnvironmentalRecord.class; + } + + /** + * Constructor for the {@link #wrap} method only. + */ + private MI_EnvironmentalRecord(final EnvironmentalRecord metadata) { + super(metadata); + } + + /** + * Invoked by {@link PropertyType} at marshalling time for wrapping the given metadata value + * in a {@code } XML element. + * + * @param metadata The metadata element to marshall. + * @return A {@code PropertyType} wrapping the given the metadata element. + */ + @Override + protected MI_EnvironmentalRecord wrap(final EnvironmentalRecord metadata) { + return new MI_EnvironmentalRecord(metadata); + } + + /** + * Invoked by JAXB at marshalling time for getting the actual metadata to write + * inside the {@code } XML element. + * This is the value or a copy of the value given in argument to the {@code wrap} method. + * + * @return The metadata to be marshalled. + */ + @Override + @XmlElementRef + public DefaultEnvironmentalRecord getElement() { + return skip() ? null : DefaultEnvironmentalRecord.castOrCopy(metadata); + } + + /** + * Invoked by JAXB at unmarshalling time for storing the result temporarily. + * + * @param metadata The unmarshalled metadata. + */ + public void setElement(final DefaultEnvironmentalRecord metadata) { + this.metadata = metadata; + } +} Propchange: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_EnvironmentalRecord.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_EnvironmentalRecord.java ------------------------------------------------------------------------------ svn:mime-type = text/plain;charset=UTF-8 Added: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_Event.java URL: http://svn.apache.org/viewvc/sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_Event.java?rev=1458538&view=auto ============================================================================== --- sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_Event.java (added) +++ sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_Event.java [UTF-8] Tue Mar 19 22:05:15 2013 @@ -0,0 +1,92 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.sis.internal.jaxb.metadata; + +import javax.xml.bind.annotation.XmlElementRef; +import org.opengis.metadata.acquisition.Event; +import org.apache.sis.metadata.iso.acquisition.DefaultEvent; +import org.apache.sis.internal.jaxb.gco.PropertyType; + + +/** + * JAXB adapter mapping implementing class to the GeoAPI interface. See + * package documentation for more information about JAXB and interface. + * + * @author Cédric Briançon (Geomatys) + * @author Martin Desruisseaux (Geomatys) + * @since 0.3 (derived from geotk-3.02) + * @version 0.3 + * @module + */ +public final class MI_Event extends PropertyType { + /** + * Empty constructor for JAXB only. + */ + public MI_Event() { + } + + /** + * Returns the GeoAPI interface which is bound by this adapter. + * This method is indirectly invoked by the private constructor + * below, so it shall not depend on the state of this object. + */ + @Override + protected Class getBoundType() { + return Event.class; + } + + /** + * Constructor for the {@link #wrap} method only. + */ + private MI_Event(final Event metadata) { + super(metadata); + } + + /** + * Invoked by {@link PropertyType} at marshalling time for wrapping the given metadata value + * in a {@code } XML element. + * + * @param metadata The metadata element to marshall. + * @return A {@code PropertyType} wrapping the given the metadata element. + */ + @Override + protected MI_Event wrap(final Event metadata) { + return new MI_Event(metadata); + } + + /** + * Invoked by JAXB at marshalling time for getting the actual metadata to write + * inside the {@code } XML element. + * This is the value or a copy of the value given in argument to the {@code wrap} method. + * + * @return The metadata to be marshalled. + */ + @Override + @XmlElementRef + public DefaultEvent getElement() { + return skip() ? null : DefaultEvent.castOrCopy(metadata); + } + + /** + * Invoked by JAXB at unmarshalling time for storing the result temporarily. + * + * @param metadata The unmarshalled metadata. + */ + public void setElement(final DefaultEvent metadata) { + this.metadata = metadata; + } +} Propchange: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_Event.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_Event.java ------------------------------------------------------------------------------ svn:mime-type = text/plain;charset=UTF-8 Added: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_GCP.java URL: http://svn.apache.org/viewvc/sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_GCP.java?rev=1458538&view=auto ============================================================================== --- sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_GCP.java (added) +++ sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_GCP.java [UTF-8] Tue Mar 19 22:05:15 2013 @@ -0,0 +1,92 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.sis.internal.jaxb.metadata; + +import javax.xml.bind.annotation.XmlElementRef; +import org.opengis.metadata.spatial.GCP; +import org.apache.sis.metadata.iso.spatial.DefaultGCP; +import org.apache.sis.internal.jaxb.gco.PropertyType; + + +/** + * JAXB adapter mapping implementing class to the GeoAPI interface. See + * package documentation for more information about JAXB and interface. + * + * @author Cédric Briançon (Geomatys) + * @author Martin Desruisseaux (Geomatys) + * @since 0.3 (derived from geotk-3.02) + * @version 0.3 + * @module + */ +public final class MI_GCP extends PropertyType { + /** + * Empty constructor for JAXB only. + */ + public MI_GCP() { + } + + /** + * Returns the GeoAPI interface which is bound by this adapter. + * This method is indirectly invoked by the private constructor + * below, so it shall not depend on the state of this object. + */ + @Override + protected Class getBoundType() { + return GCP.class; + } + + /** + * Constructor for the {@link #wrap} method only. + */ + private MI_GCP(final GCP metadata) { + super(metadata); + } + + /** + * Invoked by {@link PropertyType} at marshalling time for wrapping the given metadata value + * in a {@code } XML element. + * + * @param metadata The metadata element to marshall. + * @return A {@code PropertyType} wrapping the given the metadata element. + */ + @Override + protected MI_GCP wrap(final GCP metadata) { + return new MI_GCP(metadata); + } + + /** + * Invoked by JAXB at marshalling time for getting the actual metadata to write + * inside the {@code } XML element. + * This is the value or a copy of the value given in argument to the {@code wrap} method. + * + * @return The metadata to be marshalled. + */ + @Override + @XmlElementRef + public DefaultGCP getElement() { + return skip() ? null : DefaultGCP.castOrCopy(metadata); + } + + /** + * Invoked by JAXB at unmarshalling time for storing the result temporarily. + * + * @param metadata The unmarshalled metadata. + */ + public void setElement(final DefaultGCP metadata) { + this.metadata = metadata; + } +} Propchange: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_GCP.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_GCP.java ------------------------------------------------------------------------------ svn:mime-type = text/plain;charset=UTF-8 Added: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_GeolocationInformation.java URL: http://svn.apache.org/viewvc/sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_GeolocationInformation.java?rev=1458538&view=auto ============================================================================== --- sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_GeolocationInformation.java (added) +++ sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_GeolocationInformation.java [UTF-8] Tue Mar 19 22:05:15 2013 @@ -0,0 +1,94 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.sis.internal.jaxb.metadata; + +import javax.xml.bind.annotation.XmlElementRef; +import org.opengis.metadata.spatial.GeolocationInformation; +import org.apache.sis.metadata.iso.spatial.AbstractGeolocationInformation; +import org.apache.sis.internal.jaxb.gco.PropertyType; + + +/** + * JAXB adapter mapping implementing class to the GeoAPI interface. See + * package documentation for more information about JAXB and interface. + * + * @author Cédric Briançon (Geomatys) + * @author Martin Desruisseaux (Geomatys) + * @since 0.3 (derived from geotk-3.02) + * @version 0.3 + * @module + */ +public final class MI_GeolocationInformation extends + PropertyType +{ + /** + * Empty constructor for JAXB only. + */ + public MI_GeolocationInformation() { + } + + /** + * Returns the GeoAPI interface which is bound by this adapter. + * This method is indirectly invoked by the private constructor + * below, so it shall not depend on the state of this object. + */ + @Override + protected Class getBoundType() { + return GeolocationInformation.class; + } + + /** + * Constructor for the {@link #wrap} method only. + */ + private MI_GeolocationInformation(final GeolocationInformation metadata) { + super(metadata); + } + + /** + * Invoked by {@link PropertyType} at marshalling time for wrapping the given metadata value + * in a {@code } XML element. + * + * @param metadata The metadata element to marshall. + * @return A {@code PropertyType} wrapping the given the metadata element. + */ + @Override + protected MI_GeolocationInformation wrap(final GeolocationInformation metadata) { + return new MI_GeolocationInformation(metadata); + } + + /** + * Invoked by JAXB at marshalling time for getting the actual metadata to write + * inside the {@code } XML element. + * This is the value or a copy of the value given in argument to the {@code wrap} method. + * + * @return The metadata to be marshalled. + */ + @Override + @XmlElementRef + public AbstractGeolocationInformation getElement() { + return skip() ? null : AbstractGeolocationInformation.castOrCopy(metadata); + } + + /** + * Invoked by JAXB at unmarshalling time for storing the result temporarily. + * + * @param metadata The unmarshalled metadata. + */ + public void setElement(final AbstractGeolocationInformation metadata) { + this.metadata = metadata; + } +} Propchange: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_GeolocationInformation.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_GeolocationInformation.java ------------------------------------------------------------------------------ svn:mime-type = text/plain;charset=UTF-8 Added: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_Instrument.java URL: http://svn.apache.org/viewvc/sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_Instrument.java?rev=1458538&view=auto ============================================================================== --- sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_Instrument.java (added) +++ sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_Instrument.java [UTF-8] Tue Mar 19 22:05:15 2013 @@ -0,0 +1,92 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.sis.internal.jaxb.metadata; + +import javax.xml.bind.annotation.XmlElementRef; +import org.opengis.metadata.acquisition.Instrument; +import org.apache.sis.metadata.iso.acquisition.DefaultInstrument; +import org.apache.sis.internal.jaxb.gco.PropertyType; + + +/** + * JAXB adapter mapping implementing class to the GeoAPI interface. See + * package documentation for more information about JAXB and interface. + * + * @author Cédric Briançon (Geomatys) + * @author Martin Desruisseaux (Geomatys) + * @since 0.3 (derived from geotk-3.02) + * @version 0.3 + * @module + */ +public final class MI_Instrument extends PropertyType { + /** + * Empty constructor for JAXB only. + */ + public MI_Instrument() { + } + + /** + * Returns the GeoAPI interface which is bound by this adapter. + * This method is indirectly invoked by the private constructor + * below, so it shall not depend on the state of this object. + */ + @Override + protected Class getBoundType() { + return Instrument.class; + } + + /** + * Constructor for the {@link #wrap} method only. + */ + private MI_Instrument(final Instrument metadata) { + super(metadata); + } + + /** + * Invoked by {@link PropertyType} at marshalling time for wrapping the given metadata value + * in a {@code } XML element. + * + * @param metadata The metadata element to marshall. + * @return A {@code PropertyType} wrapping the given the metadata element. + */ + @Override + protected MI_Instrument wrap(final Instrument metadata) { + return new MI_Instrument(metadata); + } + + /** + * Invoked by JAXB at marshalling time for getting the actual metadata to write + * inside the {@code } XML element. + * This is the value or a copy of the value given in argument to the {@code wrap} method. + * + * @return The metadata to be marshalled. + */ + @Override + @XmlElementRef + public DefaultInstrument getElement() { + return skip() ? null : DefaultInstrument.castOrCopy(metadata); + } + + /** + * Invoked by JAXB at unmarshalling time for storing the result temporarily. + * + * @param metadata The unmarshalled metadata. + */ + public void setElement(final DefaultInstrument metadata) { + this.metadata = metadata; + } +} Propchange: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_Instrument.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_Instrument.java ------------------------------------------------------------------------------ svn:mime-type = text/plain;charset=UTF-8 Added: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_Objective.java URL: http://svn.apache.org/viewvc/sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_Objective.java?rev=1458538&view=auto ============================================================================== --- sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_Objective.java (added) +++ sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_Objective.java [UTF-8] Tue Mar 19 22:05:15 2013 @@ -0,0 +1,92 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.sis.internal.jaxb.metadata; + +import javax.xml.bind.annotation.XmlElementRef; +import org.opengis.metadata.acquisition.Objective; +import org.apache.sis.metadata.iso.acquisition.DefaultObjective; +import org.apache.sis.internal.jaxb.gco.PropertyType; + + +/** + * JAXB adapter mapping implementing class to the GeoAPI interface. See + * package documentation for more information about JAXB and interface. + * + * @author Cédric Briançon (Geomatys) + * @author Martin Desruisseaux (Geomatys) + * @since 0.3 (derived from geotk-3.02) + * @version 0.3 + * @module + */ +public final class MI_Objective extends PropertyType { + /** + * Empty constructor for JAXB only. + */ + public MI_Objective() { + } + + /** + * Returns the GeoAPI interface which is bound by this adapter. + * This method is indirectly invoked by the private constructor + * below, so it shall not depend on the state of this object. + */ + @Override + protected Class getBoundType() { + return Objective.class; + } + + /** + * Constructor for the {@link #wrap} method only. + */ + private MI_Objective(final Objective metadata) { + super(metadata); + } + + /** + * Invoked by {@link PropertyType} at marshalling time for wrapping the given metadata value + * in a {@code } XML element. + * + * @param metadata The metadata element to marshall. + * @return A {@code PropertyType} wrapping the given the metadata element. + */ + @Override + protected MI_Objective wrap(final Objective metadata) { + return new MI_Objective(metadata); + } + + /** + * Invoked by JAXB at marshalling time for getting the actual metadata to write + * inside the {@code } XML element. + * This is the value or a copy of the value given in argument to the {@code wrap} method. + * + * @return The metadata to be marshalled. + */ + @Override + @XmlElementRef + public DefaultObjective getElement() { + return skip() ? null : DefaultObjective.castOrCopy(metadata); + } + + /** + * Invoked by JAXB at unmarshalling time for storing the result temporarily. + * + * @param metadata The unmarshalled metadata. + */ + public void setElement(final DefaultObjective metadata) { + this.metadata = metadata; + } +} Propchange: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_Objective.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_Objective.java ------------------------------------------------------------------------------ svn:mime-type = text/plain;charset=UTF-8 Added: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_Operation.java URL: http://svn.apache.org/viewvc/sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_Operation.java?rev=1458538&view=auto ============================================================================== --- sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_Operation.java (added) +++ sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_Operation.java [UTF-8] Tue Mar 19 22:05:15 2013 @@ -0,0 +1,92 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.sis.internal.jaxb.metadata; + +import javax.xml.bind.annotation.XmlElementRef; +import org.opengis.metadata.acquisition.Operation; +import org.apache.sis.metadata.iso.acquisition.DefaultOperation; +import org.apache.sis.internal.jaxb.gco.PropertyType; + + +/** + * JAXB adapter mapping implementing class to the GeoAPI interface. See + * package documentation for more information about JAXB and interface. + * + * @author Cédric Briançon (Geomatys) + * @author Martin Desruisseaux (Geomatys) + * @since 0.3 (derived from geotk-3.02) + * @version 0.3 + * @module + */ +public final class MI_Operation extends PropertyType { + /** + * Empty constructor for JAXB only. + */ + public MI_Operation() { + } + + /** + * Returns the GeoAPI interface which is bound by this adapter. + * This method is indirectly invoked by the private constructor + * below, so it shall not depend on the state of this object. + */ + @Override + protected Class getBoundType() { + return Operation.class; + } + + /** + * Constructor for the {@link #wrap} method only. + */ + private MI_Operation(final Operation metadata) { + super(metadata); + } + + /** + * Invoked by {@link PropertyType} at marshalling time for wrapping the given metadata value + * in a {@code } XML element. + * + * @param metadata The metadata element to marshall. + * @return A {@code PropertyType} wrapping the given the metadata element. + */ + @Override + protected MI_Operation wrap(final Operation metadata) { + return new MI_Operation(metadata); + } + + /** + * Invoked by JAXB at marshalling time for getting the actual metadata to write + * inside the {@code } XML element. + * This is the value or a copy of the value given in argument to the {@code wrap} method. + * + * @return The metadata to be marshalled. + */ + @Override + @XmlElementRef + public DefaultOperation getElement() { + return skip() ? null : DefaultOperation.castOrCopy(metadata); + } + + /** + * Invoked by JAXB at unmarshalling time for storing the result temporarily. + * + * @param metadata The unmarshalled metadata. + */ + public void setElement(final DefaultOperation metadata) { + this.metadata = metadata; + } +} Propchange: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_Operation.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_Operation.java ------------------------------------------------------------------------------ svn:mime-type = text/plain;charset=UTF-8 Added: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_Plan.java URL: http://svn.apache.org/viewvc/sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_Plan.java?rev=1458538&view=auto ============================================================================== --- sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_Plan.java (added) +++ sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_Plan.java [UTF-8] Tue Mar 19 22:05:15 2013 @@ -0,0 +1,92 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.sis.internal.jaxb.metadata; + +import javax.xml.bind.annotation.XmlElementRef; +import org.opengis.metadata.acquisition.Plan; +import org.apache.sis.metadata.iso.acquisition.DefaultPlan; +import org.apache.sis.internal.jaxb.gco.PropertyType; + + +/** + * JAXB adapter mapping implementing class to the GeoAPI interface. See + * package documentation for more information about JAXB and interface. + * + * @author Cédric Briançon (Geomatys) + * @author Martin Desruisseaux (Geomatys) + * @since 0.3 (derived from geotk-3.02) + * @version 0.3 + * @module + */ +public final class MI_Plan extends PropertyType { + /** + * Empty constructor for JAXB only. + */ + public MI_Plan() { + } + + /** + * Returns the GeoAPI interface which is bound by this adapter. + * This method is indirectly invoked by the private constructor + * below, so it shall not depend on the state of this object. + */ + @Override + protected Class getBoundType() { + return Plan.class; + } + + /** + * Constructor for the {@link #wrap} method only. + */ + private MI_Plan(final Plan metadata) { + super(metadata); + } + + /** + * Invoked by {@link PropertyType} at marshalling time for wrapping the given metadata value + * in a {@code } XML element. + * + * @param metadata The metadata element to marshall. + * @return A {@code PropertyType} wrapping the given the metadata element. + */ + @Override + protected MI_Plan wrap(final Plan metadata) { + return new MI_Plan(metadata); + } + + /** + * Invoked by JAXB at marshalling time for getting the actual metadata to write + * inside the {@code } XML element. + * This is the value or a copy of the value given in argument to the {@code wrap} method. + * + * @return The metadata to be marshalled. + */ + @Override + @XmlElementRef + public DefaultPlan getElement() { + return skip() ? null : DefaultPlan.castOrCopy(metadata); + } + + /** + * Invoked by JAXB at unmarshalling time for storing the result temporarily. + * + * @param metadata The unmarshalled metadata. + */ + public void setElement(final DefaultPlan metadata) { + this.metadata = metadata; + } +} Propchange: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_Plan.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_Plan.java ------------------------------------------------------------------------------ svn:mime-type = text/plain;charset=UTF-8 Added: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_Platform.java URL: http://svn.apache.org/viewvc/sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_Platform.java?rev=1458538&view=auto ============================================================================== --- sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_Platform.java (added) +++ sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_Platform.java [UTF-8] Tue Mar 19 22:05:15 2013 @@ -0,0 +1,92 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.sis.internal.jaxb.metadata; + +import javax.xml.bind.annotation.XmlElementRef; +import org.opengis.metadata.acquisition.Platform; +import org.apache.sis.metadata.iso.acquisition.DefaultPlatform; +import org.apache.sis.internal.jaxb.gco.PropertyType; + + +/** + * JAXB adapter mapping implementing class to the GeoAPI interface. See + * package documentation for more information about JAXB and interface. + * + * @author Cédric Briançon (Geomatys) + * @author Martin Desruisseaux (Geomatys) + * @since 0.3 (derived from geotk-3.02) + * @version 0.3 + * @module + */ +public final class MI_Platform extends PropertyType { + /** + * Empty constructor for JAXB only. + */ + public MI_Platform() { + } + + /** + * Returns the GeoAPI interface which is bound by this adapter. + * This method is indirectly invoked by the private constructor + * below, so it shall not depend on the state of this object. + */ + @Override + protected Class getBoundType() { + return Platform.class; + } + + /** + * Constructor for the {@link #wrap} method only. + */ + private MI_Platform(final Platform metadata) { + super(metadata); + } + + /** + * Invoked by {@link PropertyType} at marshalling time for wrapping the given metadata value + * in a {@code } XML element. + * + * @param metadata The metadata element to marshall. + * @return A {@code PropertyType} wrapping the given the metadata element. + */ + @Override + protected MI_Platform wrap(final Platform metadata) { + return new MI_Platform(metadata); + } + + /** + * Invoked by JAXB at marshalling time for getting the actual metadata to write + * inside the {@code } XML element. + * This is the value or a copy of the value given in argument to the {@code wrap} method. + * + * @return The metadata to be marshalled. + */ + @Override + @XmlElementRef + public DefaultPlatform getElement() { + return skip() ? null : DefaultPlatform.castOrCopy(metadata); + } + + /** + * Invoked by JAXB at unmarshalling time for storing the result temporarily. + * + * @param metadata The unmarshalled metadata. + */ + public void setElement(final DefaultPlatform metadata) { + this.metadata = metadata; + } +} Propchange: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_Platform.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_Platform.java ------------------------------------------------------------------------------ svn:mime-type = text/plain;charset=UTF-8 Added: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_PlatformPass.java URL: http://svn.apache.org/viewvc/sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_PlatformPass.java?rev=1458538&view=auto ============================================================================== --- sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_PlatformPass.java (added) +++ sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_PlatformPass.java [UTF-8] Tue Mar 19 22:05:15 2013 @@ -0,0 +1,92 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.sis.internal.jaxb.metadata; + +import javax.xml.bind.annotation.XmlElementRef; +import org.opengis.metadata.acquisition.PlatformPass; +import org.apache.sis.metadata.iso.acquisition.DefaultPlatformPass; +import org.apache.sis.internal.jaxb.gco.PropertyType; + + +/** + * JAXB adapter mapping implementing class to the GeoAPI interface. See + * package documentation for more information about JAXB and interface. + * + * @author Cédric Briançon (Geomatys) + * @author Martin Desruisseaux (Geomatys) + * @since 0.3 (derived from geotk-3.02) + * @version 0.3 + * @module + */ +public final class MI_PlatformPass extends PropertyType { + /** + * Empty constructor for JAXB only. + */ + public MI_PlatformPass() { + } + + /** + * Returns the GeoAPI interface which is bound by this adapter. + * This method is indirectly invoked by the private constructor + * below, so it shall not depend on the state of this object. + */ + @Override + protected Class getBoundType() { + return PlatformPass.class; + } + + /** + * Constructor for the {@link #wrap} method only. + */ + private MI_PlatformPass(final PlatformPass metadata) { + super(metadata); + } + + /** + * Invoked by {@link PropertyType} at marshalling time for wrapping the given metadata value + * in a {@code } XML element. + * + * @param metadata The metadata element to marshall. + * @return A {@code PropertyType} wrapping the given the metadata element. + */ + @Override + protected MI_PlatformPass wrap(final PlatformPass metadata) { + return new MI_PlatformPass(metadata); + } + + /** + * Invoked by JAXB at marshalling time for getting the actual metadata to write + * inside the {@code } XML element. + * This is the value or a copy of the value given in argument to the {@code wrap} method. + * + * @return The metadata to be marshalled. + */ + @Override + @XmlElementRef + public DefaultPlatformPass getElement() { + return skip() ? null : DefaultPlatformPass.castOrCopy(metadata); + } + + /** + * Invoked by JAXB at unmarshalling time for storing the result temporarily. + * + * @param metadata The unmarshalled metadata. + */ + public void setElement(final DefaultPlatformPass metadata) { + this.metadata = metadata; + } +} Propchange: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_PlatformPass.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_PlatformPass.java ------------------------------------------------------------------------------ svn:mime-type = text/plain;charset=UTF-8 Added: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_RangeElementDescription.java URL: http://svn.apache.org/viewvc/sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_RangeElementDescription.java?rev=1458538&view=auto ============================================================================== --- sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_RangeElementDescription.java (added) +++ sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_RangeElementDescription.java [UTF-8] Tue Mar 19 22:05:15 2013 @@ -0,0 +1,94 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.sis.internal.jaxb.metadata; + +import javax.xml.bind.annotation.XmlElementRef; +import org.opengis.metadata.content.RangeElementDescription; +import org.apache.sis.metadata.iso.content.DefaultRangeElementDescription; +import org.apache.sis.internal.jaxb.gco.PropertyType; + + +/** + * JAXB adapter mapping implementing class to the GeoAPI interface. See + * package documentation for more information about JAXB and interface. + * + * @author Cédric Briançon (Geomatys) + * @author Martin Desruisseaux (Geomatys) + * @since 0.3 (derived from geotk-3.02) + * @version 0.3 + * @module + */ +public final class MI_RangeElementDescription extends + PropertyType +{ + /** + * Empty constructor for JAXB only. + */ + public MI_RangeElementDescription() { + } + + /** + * Returns the GeoAPI interface which is bound by this adapter. + * This method is indirectly invoked by the private constructor + * below, so it shall not depend on the state of this object. + */ + @Override + protected Class getBoundType() { + return RangeElementDescription.class; + } + + /** + * Constructor for the {@link #wrap} method only. + */ + private MI_RangeElementDescription(final RangeElementDescription metadata) { + super(metadata); + } + + /** + * Invoked by {@link PropertyType} at marshalling time for wrapping the given metadata value + * in a {@code } XML element. + * + * @param metadata The metadata element to marshall. + * @return A {@code PropertyType} wrapping the given the metadata element. + */ + @Override + protected MI_RangeElementDescription wrap(final RangeElementDescription metadata) { + return new MI_RangeElementDescription(metadata); + } + + /** + * Invoked by JAXB at marshalling time for getting the actual metadata to write + * inside the {@code } XML element. + * This is the value or a copy of the value given in argument to the {@code wrap} method. + * + * @return The metadata to be marshalled. + */ + @Override + @XmlElementRef + public DefaultRangeElementDescription getElement() { + return skip() ? null : DefaultRangeElementDescription.castOrCopy(metadata); + } + + /** + * Invoked by JAXB at unmarshalling time for storing the result temporarily. + * + * @param metadata The unmarshalled metadata. + */ + public void setElement(final DefaultRangeElementDescription metadata) { + this.metadata = metadata; + } +} Propchange: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_RangeElementDescription.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_RangeElementDescription.java ------------------------------------------------------------------------------ svn:mime-type = text/plain;charset=UTF-8 Added: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_RequestedDate.java URL: http://svn.apache.org/viewvc/sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_RequestedDate.java?rev=1458538&view=auto ============================================================================== --- sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_RequestedDate.java (added) +++ sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_RequestedDate.java [UTF-8] Tue Mar 19 22:05:15 2013 @@ -0,0 +1,92 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.sis.internal.jaxb.metadata; + +import javax.xml.bind.annotation.XmlElementRef; +import org.opengis.metadata.acquisition.RequestedDate; +import org.apache.sis.metadata.iso.acquisition.DefaultRequestedDate; +import org.apache.sis.internal.jaxb.gco.PropertyType; + + +/** + * JAXB adapter mapping implementing class to the GeoAPI interface. See + * package documentation for more information about JAXB and interface. + * + * @author Cédric Briançon (Geomatys) + * @author Martin Desruisseaux (Geomatys) + * @since 0.3 (derived from geotk-3.02) + * @version 0.3 + * @module + */ +public final class MI_RequestedDate extends PropertyType { + /** + * Empty constructor for JAXB only. + */ + public MI_RequestedDate() { + } + + /** + * Returns the GeoAPI interface which is bound by this adapter. + * This method is indirectly invoked by the private constructor + * below, so it shall not depend on the state of this object. + */ + @Override + protected Class getBoundType() { + return RequestedDate.class; + } + + /** + * Constructor for the {@link #wrap} method only. + */ + private MI_RequestedDate(final RequestedDate metadata) { + super(metadata); + } + + /** + * Invoked by {@link PropertyType} at marshalling time for wrapping the given metadata value + * in a {@code } XML element. + * + * @param metadata The metadata element to marshall. + * @return A {@code PropertyType} wrapping the given the metadata element. + */ + @Override + protected MI_RequestedDate wrap(final RequestedDate metadata) { + return new MI_RequestedDate(metadata); + } + + /** + * Invoked by JAXB at marshalling time for getting the actual metadata to write + * inside the {@code } XML element. + * This is the value or a copy of the value given in argument to the {@code wrap} method. + * + * @return The metadata to be marshalled. + */ + @Override + @XmlElementRef + public DefaultRequestedDate getElement() { + return skip() ? null : DefaultRequestedDate.castOrCopy(metadata); + } + + /** + * Invoked by JAXB at unmarshalling time for storing the result temporarily. + * + * @param metadata The unmarshalled metadata. + */ + public void setElement(final DefaultRequestedDate metadata) { + this.metadata = metadata; + } +} Propchange: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_RequestedDate.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: sis/branches/JDK7/sis-metadata/src/main/java/org/apache/sis/internal/jaxb/metadata/MI_RequestedDate.java ------------------------------------------------------------------------------ svn:mime-type = text/plain;charset=UTF-8