Author: desruisseaux
Date: Sun Jan 5 06:22:43 2014
New Revision: 1555461
URL: http://svn.apache.org/r1555461
Log:
Trivial renaming of local variables for more consistency.
Modified:
sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CD_Ellipsoid.java
sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CD_GeodeticDatum.java
sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CD_ImageDatum.java
sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CD_PrimeMeridian.java
sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CD_TemporalDatum.java
sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CD_VerticalDatum.java
sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CS_AffineCS.java
sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CS_CartesianCS.java
sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CS_CoordinateSystemAxis.java
sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CS_EllipsoidalCS.java
sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CS_TimeCS.java
sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CS_VerticalCS.java
Modified:
sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CD_Ellipsoid.java
URL:
http://svn.apache.org/viewvc/sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CD_Ellipsoid.java?rev=1555461&r1=1555460&r2=1555461&view=diff
==============================================================================
---
sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CD_Ellipsoid.java
[UTF-8] (original)
+++
sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CD_Ellipsoid.java
[UTF-8] Sun Jan 5 06:22:43 2014
@@ -54,20 +54,20 @@ public final class CD_Ellipsoid extends
/**
* Constructor for the {@link #wrap} method only.
*/
- private CD_Ellipsoid(final Ellipsoid metadata) {
- super(metadata);
+ private CD_Ellipsoid(final Ellipsoid ellipsoid) {
+ super(ellipsoid);
}
/**
* Invoked by {@link PropertyType} at marshalling time for wrapping the
given value
* in a {@code <gml:Ellipsoid>} XML element.
*
- * @param value The element to marshall.
+ * @param ellipsoid The element to marshall.
* @return A {@code PropertyType} wrapping the given the element.
*/
@Override
- protected CD_Ellipsoid wrap(final Ellipsoid value) {
- return new CD_Ellipsoid(value);
+ protected CD_Ellipsoid wrap(final Ellipsoid ellipsoid) {
+ return new CD_Ellipsoid(ellipsoid);
}
/**
@@ -85,9 +85,9 @@ public final class CD_Ellipsoid extends
/**
* Invoked by JAXB at unmarshalling time for storing the result
temporarily.
*
- * @param element The unmarshalled element.
+ * @param ellipsoid The unmarshalled element.
*/
- public void setElement(final DefaultEllipsoid element) {
- this.metadata = element;
+ public void setElement(final DefaultEllipsoid ellipsoid) {
+ metadata = ellipsoid;
}
}
Modified:
sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CD_GeodeticDatum.java
URL:
http://svn.apache.org/viewvc/sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CD_GeodeticDatum.java?rev=1555461&r1=1555460&r2=1555461&view=diff
==============================================================================
---
sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CD_GeodeticDatum.java
[UTF-8] (original)
+++
sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CD_GeodeticDatum.java
[UTF-8] Sun Jan 5 06:22:43 2014
@@ -54,20 +54,20 @@ public final class CD_GeodeticDatum exte
/**
* Constructor for the {@link #wrap} method only.
*/
- private CD_GeodeticDatum(final GeodeticDatum metadata) {
- super(metadata);
+ private CD_GeodeticDatum(final GeodeticDatum datum) {
+ super(datum);
}
/**
* Invoked by {@link PropertyType} at marshalling time for wrapping the
given value
* in a {@code <gml:GeodeticDatum>} XML element.
*
- * @param value The element to marshall.
+ * @param datum The element to marshall.
* @return A {@code PropertyType} wrapping the given the element.
*/
@Override
- protected CD_GeodeticDatum wrap(final GeodeticDatum value) {
- return new CD_GeodeticDatum(value);
+ protected CD_GeodeticDatum wrap(final GeodeticDatum datum) {
+ return new CD_GeodeticDatum(datum);
}
/**
@@ -85,9 +85,9 @@ public final class CD_GeodeticDatum exte
/**
* Invoked by JAXB at unmarshalling time for storing the result
temporarily.
*
- * @param element The unmarshalled element.
+ * @param datum The unmarshalled element.
*/
- public void setElement(final DefaultGeodeticDatum element) {
- this.metadata = element;
+ public void setElement(final DefaultGeodeticDatum datum) {
+ metadata = datum;
}
}
Modified:
sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CD_ImageDatum.java
URL:
http://svn.apache.org/viewvc/sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CD_ImageDatum.java?rev=1555461&r1=1555460&r2=1555461&view=diff
==============================================================================
---
sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CD_ImageDatum.java
[UTF-8] (original)
+++
sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CD_ImageDatum.java
[UTF-8] Sun Jan 5 06:22:43 2014
@@ -54,20 +54,20 @@ public final class CD_ImageDatum extends
/**
* Constructor for the {@link #wrap} method only.
*/
- private CD_ImageDatum(final ImageDatum metadata) {
- super(metadata);
+ private CD_ImageDatum(final ImageDatum datum) {
+ super(datum);
}
/**
* Invoked by {@link PropertyType} at marshalling time for wrapping the
given value
* in a {@code <gml:ImageDatum>} XML element.
*
- * @param value The element to marshall.
+ * @param datum The element to marshall.
* @return A {@code PropertyType} wrapping the given the element.
*/
@Override
- protected CD_ImageDatum wrap(final ImageDatum value) {
- return new CD_ImageDatum(value);
+ protected CD_ImageDatum wrap(final ImageDatum datum) {
+ return new CD_ImageDatum(datum);
}
/**
@@ -85,9 +85,9 @@ public final class CD_ImageDatum extends
/**
* Invoked by JAXB at unmarshalling time for storing the result
temporarily.
*
- * @param element The unmarshalled element.
+ * @param datum The unmarshalled element.
*/
- public void setElement(final DefaultImageDatum element) {
- this.metadata = element;
+ public void setElement(final DefaultImageDatum datum) {
+ metadata = datum;
}
}
Modified:
sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CD_PrimeMeridian.java
URL:
http://svn.apache.org/viewvc/sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CD_PrimeMeridian.java?rev=1555461&r1=1555460&r2=1555461&view=diff
==============================================================================
---
sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CD_PrimeMeridian.java
[UTF-8] (original)
+++
sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CD_PrimeMeridian.java
[UTF-8] Sun Jan 5 06:22:43 2014
@@ -54,20 +54,20 @@ public final class CD_PrimeMeridian exte
/**
* Constructor for the {@link #wrap} method only.
*/
- private CD_PrimeMeridian(final PrimeMeridian metadata) {
- super(metadata);
+ private CD_PrimeMeridian(final PrimeMeridian datum) {
+ super(datum);
}
/**
* Invoked by {@link PropertyType} at marshalling time for wrapping the
given value
* in a {@code <gml:PrimeMeridian>} XML element.
*
- * @param value The element to marshall.
+ * @param datum The element to marshall.
* @return A {@code PropertyType} wrapping the given the element.
*/
@Override
- protected CD_PrimeMeridian wrap(final PrimeMeridian value) {
- return new CD_PrimeMeridian(value);
+ protected CD_PrimeMeridian wrap(final PrimeMeridian datum) {
+ return new CD_PrimeMeridian(datum);
}
/**
@@ -85,9 +85,9 @@ public final class CD_PrimeMeridian exte
/**
* Invoked by JAXB at unmarshalling time for storing the result
temporarily.
*
- * @param element The unmarshalled element.
+ * @param datum The unmarshalled element.
*/
- public void setElement(final DefaultPrimeMeridian element) {
- this.metadata = element;
+ public void setElement(final DefaultPrimeMeridian datum) {
+ metadata = datum;
}
}
Modified:
sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CD_TemporalDatum.java
URL:
http://svn.apache.org/viewvc/sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CD_TemporalDatum.java?rev=1555461&r1=1555460&r2=1555461&view=diff
==============================================================================
---
sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CD_TemporalDatum.java
[UTF-8] (original)
+++
sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CD_TemporalDatum.java
[UTF-8] Sun Jan 5 06:22:43 2014
@@ -54,20 +54,20 @@ public final class CD_TemporalDatum exte
/**
* Constructor for the {@link #wrap} method only.
*/
- private CD_TemporalDatum(final TemporalDatum metadata) {
- super(metadata);
+ private CD_TemporalDatum(final TemporalDatum datum) {
+ super(datum);
}
/**
* Invoked by {@link PropertyType} at marshalling time for wrapping the
given value
* in a {@code <gml:TemporalDatum>} XML element.
*
- * @param value The element to marshall.
+ * @param datum The element to marshall.
* @return A {@code PropertyType} wrapping the given the element.
*/
@Override
- protected CD_TemporalDatum wrap(final TemporalDatum value) {
- return new CD_TemporalDatum(value);
+ protected CD_TemporalDatum wrap(final TemporalDatum datum) {
+ return new CD_TemporalDatum(datum);
}
/**
@@ -85,9 +85,9 @@ public final class CD_TemporalDatum exte
/**
* Invoked by JAXB at unmarshalling time for storing the result
temporarily.
*
- * @param element The unmarshalled element.
+ * @param datum The unmarshalled element.
*/
- public void setElement(final DefaultTemporalDatum element) {
- this.metadata = element;
+ public void setElement(final DefaultTemporalDatum datum) {
+ metadata = datum;
}
}
Modified:
sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CD_VerticalDatum.java
URL:
http://svn.apache.org/viewvc/sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CD_VerticalDatum.java?rev=1555461&r1=1555460&r2=1555461&view=diff
==============================================================================
---
sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CD_VerticalDatum.java
[UTF-8] (original)
+++
sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CD_VerticalDatum.java
[UTF-8] Sun Jan 5 06:22:43 2014
@@ -54,20 +54,20 @@ public final class CD_VerticalDatum exte
/**
* Constructor for the {@link #wrap} method only.
*/
- private CD_VerticalDatum(final VerticalDatum metadata) {
- super(metadata);
+ private CD_VerticalDatum(final VerticalDatum datum) {
+ super(datum);
}
/**
* Invoked by {@link PropertyType} at marshalling time for wrapping the
given value
* in a {@code <gml:VerticalDatum>} XML element.
*
- * @param value The element to marshall.
+ * @param datum The element to marshall.
* @return A {@code PropertyType} wrapping the given the element.
*/
@Override
- protected CD_VerticalDatum wrap(final VerticalDatum value) {
- return new CD_VerticalDatum(value);
+ protected CD_VerticalDatum wrap(final VerticalDatum datum) {
+ return new CD_VerticalDatum(datum);
}
/**
@@ -85,9 +85,9 @@ public final class CD_VerticalDatum exte
/**
* Invoked by JAXB at unmarshalling time for storing the result
temporarily.
*
- * @param element The unmarshalled element.
+ * @param datum The unmarshalled element.
*/
- public void setElement(final DefaultVerticalDatum element) {
- this.metadata = element;
+ public void setElement(final DefaultVerticalDatum datum) {
+ metadata = datum;
}
}
Modified:
sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CS_AffineCS.java
URL:
http://svn.apache.org/viewvc/sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CS_AffineCS.java?rev=1555461&r1=1555460&r2=1555461&view=diff
==============================================================================
---
sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CS_AffineCS.java
[UTF-8] (original)
+++
sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CS_AffineCS.java
[UTF-8] Sun Jan 5 06:22:43 2014
@@ -26,8 +26,8 @@ import org.apache.sis.internal.jaxb.gco.
* 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)
+ * @author Cédric Briançon (Geomatys)
+ * @author Martin Desruisseaux (Geomatys)
* @since 0.4 (derived from geotk-3.04)
* @version 0.4
* @module
@@ -54,20 +54,20 @@ public final class CS_AffineCS extends P
/**
* Constructor for the {@link #wrap} method only.
*/
- private CS_AffineCS(final AffineCS metadata) {
- super(metadata);
+ private CS_AffineCS(final AffineCS cs) {
+ super(cs);
}
/**
* Invoked by {@link PropertyType} at marshalling time for wrapping the
given value
* in a {@code <gml:AffineCS>} XML element.
*
- * @param value The element to marshall.
+ * @param cs The element to marshall.
* @return A {@code PropertyType} wrapping the given the element.
*/
@Override
- protected CS_AffineCS wrap(final AffineCS value) {
- return new CS_AffineCS(value);
+ protected CS_AffineCS wrap(final AffineCS cs) {
+ return new CS_AffineCS(cs);
}
/**
@@ -85,9 +85,9 @@ public final class CS_AffineCS extends P
/**
* Invoked by JAXB at unmarshalling time for storing the result
temporarily.
*
- * @param element The unmarshalled element.
+ * @param cs The unmarshalled element.
*/
- public void setElement(final DefaultAffineCS element) {
- this.metadata = element;
+ public void setElement(final DefaultAffineCS cs) {
+ metadata = cs;
}
}
Modified:
sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CS_CartesianCS.java
URL:
http://svn.apache.org/viewvc/sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CS_CartesianCS.java?rev=1555461&r1=1555460&r2=1555461&view=diff
==============================================================================
---
sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CS_CartesianCS.java
[UTF-8] (original)
+++
sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CS_CartesianCS.java
[UTF-8] Sun Jan 5 06:22:43 2014
@@ -54,20 +54,20 @@ public final class CS_CartesianCS extend
/**
* Constructor for the {@link #wrap} method only.
*/
- private CS_CartesianCS(final CartesianCS metadata) {
- super(metadata);
+ private CS_CartesianCS(final CartesianCS cs) {
+ super(cs);
}
/**
* Invoked by {@link PropertyType} at marshalling time for wrapping the
given value
* in a {@code <gml:CartesianCS>} XML element.
*
- * @param value The element to marshall.
+ * @param cs The element to marshall.
* @return A {@code PropertyType} wrapping the given the element.
*/
@Override
- protected CS_CartesianCS wrap(final CartesianCS value) {
- return new CS_CartesianCS(value);
+ protected CS_CartesianCS wrap(final CartesianCS cs) {
+ return new CS_CartesianCS(cs);
}
/**
@@ -85,9 +85,9 @@ public final class CS_CartesianCS extend
/**
* Invoked by JAXB at unmarshalling time for storing the result
temporarily.
*
- * @param element The unmarshalled element.
+ * @param cs The unmarshalled element.
*/
- public void setElement(final DefaultCartesianCS element) {
- this.metadata = element;
+ public void setElement(final DefaultCartesianCS cs) {
+ metadata = cs;
}
}
Modified:
sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CS_CoordinateSystemAxis.java
URL:
http://svn.apache.org/viewvc/sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CS_CoordinateSystemAxis.java?rev=1555461&r1=1555460&r2=1555461&view=diff
==============================================================================
---
sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CS_CoordinateSystemAxis.java
[UTF-8] (original)
+++
sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CS_CoordinateSystemAxis.java
[UTF-8] Sun Jan 5 06:22:43 2014
@@ -32,9 +32,7 @@ import org.apache.sis.internal.jaxb.gco.
* @version 0.4
* @module
*/
-public final class CS_CoordinateSystemAxis extends
- PropertyType<CS_CoordinateSystemAxis, CoordinateSystemAxis>
-{
+public final class CS_CoordinateSystemAxis extends
PropertyType<CS_CoordinateSystemAxis, CoordinateSystemAxis> {
/**
* Empty constructor for JAXB only.
*/
@@ -56,20 +54,20 @@ public final class CS_CoordinateSystemAx
/**
* Constructor for the {@link #wrap} method only.
*/
- private CS_CoordinateSystemAxis(final CoordinateSystemAxis metadata) {
- super(metadata);
+ private CS_CoordinateSystemAxis(final CoordinateSystemAxis axis) {
+ super(axis);
}
/**
* Invoked by {@link PropertyType} at marshalling time for wrapping the
given value
* in a {@code <gml:CoordinateSystemAxis>} XML element.
*
- * @param value The element to marshall.
+ * @param axis The element to marshall.
* @return A {@code PropertyType} wrapping the given the element.
*/
@Override
- protected CS_CoordinateSystemAxis wrap(final CoordinateSystemAxis value) {
- return new CS_CoordinateSystemAxis(value);
+ protected CS_CoordinateSystemAxis wrap(final CoordinateSystemAxis axis) {
+ return new CS_CoordinateSystemAxis(axis);
}
/**
@@ -87,9 +85,9 @@ public final class CS_CoordinateSystemAx
/**
* Invoked by JAXB at unmarshalling time for storing the result
temporarily.
*
- * @param element The unmarshalled element.
+ * @param axis The unmarshalled element.
*/
- public void setElement(final DefaultCoordinateSystemAxis element) {
- this.metadata = element;
+ public void setElement(final DefaultCoordinateSystemAxis axis) {
+ metadata = axis;
}
}
Modified:
sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CS_EllipsoidalCS.java
URL:
http://svn.apache.org/viewvc/sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CS_EllipsoidalCS.java?rev=1555461&r1=1555460&r2=1555461&view=diff
==============================================================================
---
sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CS_EllipsoidalCS.java
[UTF-8] (original)
+++
sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CS_EllipsoidalCS.java
[UTF-8] Sun Jan 5 06:22:43 2014
@@ -54,20 +54,20 @@ public final class CS_EllipsoidalCS exte
/**
* Constructor for the {@link #wrap} method only.
*/
- private CS_EllipsoidalCS(final EllipsoidalCS metadata) {
- super(metadata);
+ private CS_EllipsoidalCS(final EllipsoidalCS cs) {
+ super(cs);
}
/**
* Invoked by {@link PropertyType} at marshalling time for wrapping the
given value
* in a {@code <gml:EllipsoidalCS>} XML element.
*
- * @param value The element to marshall.
+ * @param cs The element to marshall.
* @return A {@code PropertyType} wrapping the given the element.
*/
@Override
- protected CS_EllipsoidalCS wrap(final EllipsoidalCS value) {
- return new CS_EllipsoidalCS(value);
+ protected CS_EllipsoidalCS wrap(final EllipsoidalCS cs) {
+ return new CS_EllipsoidalCS(cs);
}
/**
@@ -85,9 +85,9 @@ public final class CS_EllipsoidalCS exte
/**
* Invoked by JAXB at unmarshalling time for storing the result
temporarily.
*
- * @param element The unmarshalled element.
+ * @param cs The unmarshalled element.
*/
- public void setElement(final DefaultEllipsoidalCS element) {
- this.metadata = element;
+ public void setElement(final DefaultEllipsoidalCS cs) {
+ metadata = cs;
}
}
Modified:
sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CS_TimeCS.java
URL:
http://svn.apache.org/viewvc/sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CS_TimeCS.java?rev=1555461&r1=1555460&r2=1555461&view=diff
==============================================================================
---
sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CS_TimeCS.java
[UTF-8] (original)
+++
sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CS_TimeCS.java
[UTF-8] Sun Jan 5 06:22:43 2014
@@ -54,20 +54,20 @@ public final class CS_TimeCS extends Pro
/**
* Constructor for the {@link #wrap} method only.
*/
- private CS_TimeCS(final TimeCS metadata) {
- super(metadata);
+ private CS_TimeCS(final TimeCS cs) {
+ super(cs);
}
/**
* Invoked by {@link PropertyType} at marshalling time for wrapping the
given value
* in a {@code <gml:TimeCS>} XML element.
*
- * @param value The element to marshall.
+ * @param cs The element to marshall.
* @return A {@code PropertyType} wrapping the given the element.
*/
@Override
- protected CS_TimeCS wrap(final TimeCS value) {
- return new CS_TimeCS(value);
+ protected CS_TimeCS wrap(final TimeCS cs) {
+ return new CS_TimeCS(cs);
}
/**
@@ -85,9 +85,9 @@ public final class CS_TimeCS extends Pro
/**
* Invoked by JAXB at unmarshalling time for storing the result
temporarily.
*
- * @param element The unmarshalled element.
+ * @param cs The unmarshalled element.
*/
- public void setElement(final DefaultTimeCS element) {
- this.metadata = element;
+ public void setElement(final DefaultTimeCS cs) {
+ metadata = cs;
}
}
Modified:
sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CS_VerticalCS.java
URL:
http://svn.apache.org/viewvc/sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CS_VerticalCS.java?rev=1555461&r1=1555460&r2=1555461&view=diff
==============================================================================
---
sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CS_VerticalCS.java
[UTF-8] (original)
+++
sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/jaxb/referencing/CS_VerticalCS.java
[UTF-8] Sun Jan 5 06:22:43 2014
@@ -54,20 +54,20 @@ public final class CS_VerticalCS extends
/**
* Constructor for the {@link #wrap} method only.
*/
- private CS_VerticalCS(final VerticalCS metadata) {
- super(metadata);
+ private CS_VerticalCS(final VerticalCS cs) {
+ super(cs);
}
/**
* Invoked by {@link PropertyType} at marshalling time for wrapping the
given value
* in a {@code <gml:VerticalCS>} XML element.
*
- * @param value The element to marshall.
+ * @param cs The element to marshall.
* @return A {@code PropertyType} wrapping the given the element.
*/
@Override
- protected CS_VerticalCS wrap(final VerticalCS value) {
- return new CS_VerticalCS(value);
+ protected CS_VerticalCS wrap(final VerticalCS cs) {
+ return new CS_VerticalCS(cs);
}
/**
@@ -85,9 +85,9 @@ public final class CS_VerticalCS extends
/**
* Invoked by JAXB at unmarshalling time for storing the result
temporarily.
*
- * @param element The unmarshalled element.
+ * @param cs The unmarshalled element.
*/
- public void setElement(final DefaultVerticalCS element) {
- this.metadata = element;
+ public void setElement(final DefaultVerticalCS cs) {
+ metadata = cs;
}
}