Modified: sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gco/GO_Integer.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gco/GO_Integer.java?rev=1779559&r1=1779558&r2=1779559&view=diff ============================================================================== --- sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gco/GO_Integer.java [UTF-8] (original) +++ sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gco/GO_Integer.java [UTF-8] Fri Jan 20 04:34:26 2017 @@ -46,7 +46,7 @@ public final class GO_Integer extends Pr /** * Constructs a wrapper for the given value. * - * @param value The value. + * @param value the value. */ private GO_Integer(final Integer value) { super(value, value == 0); @@ -66,8 +66,8 @@ public final class GO_Integer extends Pr * Allows JAXB to change the result of the marshalling process, according to the * ISO-19139 standard and its requirements about primitive types. * - * @param value The integer value we want to surround by an element representing its type. - * @return An adaptation of the integer value, that is to say an integer value surrounded + * @param value the integer value we want to surround by an element representing its type. + * @return an adaptation of the integer value, that is to say an integer value surrounded * by {@code <gco:Integer>} element. */ @Override @@ -78,7 +78,7 @@ public final class GO_Integer extends Pr /** * Invoked by JAXB at marshalling time for getting the actual value to write. * - * @return The value to be marshalled. + * @return the value to be marshalled. */ @XmlElement(name = "Integer") @XmlSchemaType(name = "integer") @@ -89,7 +89,7 @@ public final class GO_Integer extends Pr /** * Invoked by JAXB at unmarshalling time for storing the result temporarily. * - * @param metadata The unmarshalled value. + * @param metadata the unmarshalled value. */ public void setElement(final Integer metadata) { this.metadata = metadata;
Modified: sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gco/GO_Integer64.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gco/GO_Integer64.java?rev=1779559&r1=1779558&r2=1779559&view=diff ============================================================================== --- sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gco/GO_Integer64.java [UTF-8] (original) +++ sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gco/GO_Integer64.java [UTF-8] Fri Jan 20 04:34:26 2017 @@ -41,7 +41,7 @@ public final class GO_Integer64 extends /** * Constructs a wrapper for the given value. * - * @param value The value. + * @param value the value. */ private GO_Integer64(final Long value) { super(value, value == 0L); @@ -61,8 +61,8 @@ public final class GO_Integer64 extends * Allows JAXB to change the result of the marshalling process, according to the * ISO-19139 standard and its requirements about primitive types. * - * @param value The integer value we want to surround by an element representing its type. - * @return An adaptation of the integer value, that is to say a integer value surrounded + * @param value the integer value we want to surround by an element representing its type. + * @return an adaptation of the integer value, that is to say a integer value surrounded * by {@code <gco:Integer>} element. */ @Override @@ -73,7 +73,7 @@ public final class GO_Integer64 extends /** * Invoked by JAXB at marshalling time for getting the actual value to write. * - * @return The value to be marshalled. + * @return the value to be marshalled. */ @XmlElement(name = "Integer") @XmlSchemaType(name = "integer") @@ -84,7 +84,7 @@ public final class GO_Integer64 extends /** * Invoked by JAXB at unmarshalling time for storing the result temporarily. * - * @param metadata The unmarshalled value. + * @param metadata the unmarshalled value. */ public void setElement(final Long metadata) { this.metadata = metadata; Modified: sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gco/GO_LocalName.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gco/GO_LocalName.java?rev=1779559&r1=1779558&r2=1779559&view=diff ============================================================================== --- sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gco/GO_LocalName.java [UTF-8] (original) +++ sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gco/GO_LocalName.java [UTF-8] Fri Jan 20 04:34:26 2017 @@ -55,8 +55,8 @@ public final class GO_LocalName extends * Does the link between an {@link AbstractName} and the adapter associated. * JAXB calls automatically this method at marshalling-time. * - * @param value The implementing class for this metadata value. - * @return An wrapper which contains the metadata value. + * @param value the implementing class for this metadata value. + * @return an wrapper which contains the metadata value. */ @Override public GO_LocalName marshal(final LocalName value) { @@ -67,8 +67,8 @@ public final class GO_LocalName extends * Does the link between adapters and the way they will be unmarshalled. * JAXB calls automatically this method at unmarshalling-time. * - * @param value The wrapper, or {@code null} if none. - * @return The implementing class. + * @param value the wrapper, or {@code null} if none. + * @return the implementing class. */ @Override public LocalName unmarshal(final GO_LocalName value) { Modified: sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gco/GO_Measure.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gco/GO_Measure.java?rev=1779559&r1=1779558&r2=1779559&view=diff ============================================================================== --- sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gco/GO_Measure.java [UTF-8] (original) +++ sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gco/GO_Measure.java [UTF-8] Fri Jan 20 04:34:26 2017 @@ -53,7 +53,7 @@ public final class GO_Measure extends Xm /** * Constructs an adapter for the given value before marshalling. * - * @param value The value. + * @param value the value. * * @todo The unit of measurement is fixed to metres for now because we do not have this information * in current metadata interface. This will need to be revisited in a future SIS version if we @@ -67,8 +67,8 @@ public final class GO_Measure extends Xm /** * Allows JAXB to generate a Double object using the value found in the adapter. * - * @param value The value wrapped in an adapter. - * @return The double value extracted from the adapter. + * @param value the value wrapped in an adapter. + * @return the double value extracted from the adapter. */ @Override public Double unmarshal(final GO_Measure value) { @@ -85,8 +85,8 @@ public final class GO_Measure extends Xm * Allows JAXB to change the result of the marshalling process, according to the * ISO-19139 standard and its requirements about {@code measures}. * - * @param value The double value we want to integrate into a {@code <gco:Measure>} element. - * @return An adaptation of the double value, that is to say a double value surrounded + * @param value the double value we want to integrate into a {@code <gco:Measure>} element. + * @return an adaptation of the double value, that is to say a double value surrounded * by {@code <gco:Measure>} element, with an {@code uom} attribute. */ @Override Modified: sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gco/GO_Real.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gco/GO_Real.java?rev=1779559&r1=1779558&r2=1779559&view=diff ============================================================================== --- sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gco/GO_Real.java [UTF-8] (original) +++ sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gco/GO_Real.java [UTF-8] Fri Jan 20 04:34:26 2017 @@ -48,7 +48,7 @@ public final class GO_Real extends Prope /** * Constructs a wrapper for the given value. * - * @param value The value. + * @param value the value. */ private GO_Real(final Double value) { super(value, value.isNaN()); @@ -68,8 +68,8 @@ public final class GO_Real extends Prope * Allows JAXB to change the result of the marshalling process, according to the * ISO-19139 standard and its requirements about primitive types. * - * @param value The double value we want to surround by an element representing its type. - * @return An adaptation of the double value, that is to say a double value surrounded + * @param value the double value we want to surround by an element representing its type. + * @return an adaptation of the double value, that is to say a double value surrounded * by {@code <gco:Real>} element. */ @Override @@ -80,7 +80,7 @@ public final class GO_Real extends Prope /** * Invoked by JAXB at marshalling time for getting the actual value to write. * - * @return The value to be marshalled. + * @return the value to be marshalled. */ @XmlElement(name = "Real") @XmlSchemaType(name = "double") @@ -91,7 +91,7 @@ public final class GO_Real extends Prope /** * Invoked by JAXB at unmarshalling time for storing the result temporarily. * - * @param metadata The unmarshalled value. + * @param metadata the unmarshalled value. */ public void setElement(final Double metadata) { this.metadata = metadata; Modified: sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gco/GO_RecordType.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gco/GO_RecordType.java?rev=1779559&r1=1779558&r2=1779559&view=diff ============================================================================== --- sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gco/GO_RecordType.java [UTF-8] (original) +++ sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gco/GO_RecordType.java [UTF-8] Fri Jan 20 04:34:26 2017 @@ -40,7 +40,7 @@ public final class GO_RecordType extends /** * Wraps a {@code RecordType} value with a {@code gco:RecordType} tags at marshalling-time. * - * @param metadata The metadata value to marshal. + * @param metadata the metadata value to marshal. */ private GO_RecordType(final RecordType metadata) { super(metadata); @@ -49,8 +49,8 @@ public final class GO_RecordType extends /** * Returns a wrapper for the given {@code RecordType} element. * - * @param value The value to marshal. - * @return The wrapper around the given metadata value. + * @param value the value to marshal. + * @return the wrapper around the given metadata value. */ @Override protected GO_RecordType wrap(final RecordType value) { @@ -71,7 +71,7 @@ public final class GO_RecordType extends * Returns the {@link DefaultRecordType} generated from the metadata value. * This method is systematically called at marshalling-time by JAXB. * - * @return The metadata to be marshalled. + * @return the metadata to be marshalled. */ @XmlElement(name = "RecordType") public DefaultRecordType getElement() { @@ -82,7 +82,7 @@ public final class GO_RecordType extends * Sets the value for the {@link DefaultRecordType}. * This method is systematically called at unmarshalling-time by JAXB. * - * @param metadata The unmarshalled metadata. + * @param metadata the unmarshalled metadata. */ public void setElement(final DefaultRecordType metadata) { this.metadata = metadata; Modified: sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gco/InternationalStringAdapter.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gco/InternationalStringAdapter.java?rev=1779559&r1=1779558&r2=1779559&view=diff ============================================================================== --- sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gco/InternationalStringAdapter.java [UTF-8] (original) +++ sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gco/InternationalStringAdapter.java [UTF-8] Fri Jan 20 04:34:26 2017 @@ -45,8 +45,8 @@ public final class InternationalStringAd * Converts an object read from a XML stream to an {@link InternationalString} implementation. * JAXB invokes automatically this method at unmarshalling time. * - * @param value The wrapper for the value, or {@code null}. - * @return The unwrapped {@link String} value, or {@code null}. + * @param value the wrapper for the value, or {@code null}. + * @return the unwrapped {@link String} value, or {@code null}. */ @Override public InternationalString unmarshal(final GO_CharacterString value) { @@ -66,8 +66,8 @@ public final class InternationalStringAd * Converts an {@link InternationalString} to an object to format into a XML stream. * JAXB invokes automatically this method at marshalling time. * - * @param value The string value, or {@code null}. - * @return The wrapper for the given string, or {@code null}. + * @param value the string value, or {@code null}. + * @return the wrapper for the given string, or {@code null}. */ @Override public GO_CharacterString marshal(final InternationalString value) { Modified: sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gco/InternationalStringConverter.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gco/InternationalStringConverter.java?rev=1779559&r1=1779558&r2=1779559&view=diff ============================================================================== --- sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gco/InternationalStringConverter.java [UTF-8] (original) +++ sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gco/InternationalStringConverter.java [UTF-8] Fri Jan 20 04:34:26 2017 @@ -41,8 +41,8 @@ public final class InternationalStringCo * Converts an object read from a XML stream to an {@link InternationalString} * implementation. JAXB invokes automatically this method at unmarshalling time. * - * @param adapter The adapter for the string value. - * @return An {@link InternationalString} for the string value. + * @param adapter the adapter for the string value. + * @return an {@link InternationalString} for the string value. */ @Override public InternationalString unmarshal(final String adapter) { @@ -53,8 +53,8 @@ public final class InternationalStringCo * Converts an {@link InternationalString} to an object to formatted into a * XML stream. JAXB invokes automatically this method at marshalling time. * - * @param value The string value. - * @return The adapter for the string. + * @param value the string value. + * @return the adapter for the string. */ @Override public String marshal(final InternationalString value) { Modified: sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gco/NameAdapter.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gco/NameAdapter.java?rev=1779559&r1=1779558&r2=1779559&view=diff ============================================================================== --- sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gco/NameAdapter.java [UTF-8] (original) +++ sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gco/NameAdapter.java [UTF-8] Fri Jan 20 04:34:26 2017 @@ -66,7 +66,7 @@ abstract class NameAdapter<ValueType ext /** * Ensures that the {@linkplain #name} is not already defined. * - * @throws IllegalStateException If a name is already defined. + * @throws IllegalStateException if a name is already defined. */ private void ensureUndefined() throws IllegalStateException { if (name != null) { @@ -78,7 +78,7 @@ abstract class NameAdapter<ValueType ext * Returns the {@code LocalName} or {@code ScopedName} to marshall. Returns {@code null} if the name * is a {@link TypeName} or a {@link MemberName}, in order to use {@link #getNameType()} instead. * - * @return The code for the current name, or {@code null} if none. + * @return the code for the current name, or {@code null} if none. */ @XmlElementRef public final CodeType getCodeType() { @@ -103,8 +103,8 @@ abstract class NameAdapter<ValueType ext * Sets the value for the {@code LocalName} or {@code ScopedName}. * This method is called at unmarshalling-time by JAXB. * - * @param code The new name. - * @throws IllegalStateException If a name is already defined. + * @param code the new name. + * @throws IllegalStateException if a name is already defined. */ public final void setCodeType(final CodeType code) throws IllegalStateException { ensureUndefined(); @@ -117,7 +117,7 @@ abstract class NameAdapter<ValueType ext * Returns the {@code TypeName} or {@code MemberName} to marshall. Returns {@code null} if the name * is a {@link LocalName} or {@link ScopedName}, in order to use {@link #getCodeType()} instead. * - * @return The current name, or {@code null} if none. + * @return the current name, or {@code null} if none. */ @XmlElementRef public final DefaultLocalName getNameType() { @@ -135,8 +135,8 @@ abstract class NameAdapter<ValueType ext * Sets the value from the {@code TypeName} or {@code MemberName}. * This method is called at unmarshalling-time by JAXB. * - * @param value The new name. - * @throws IllegalStateException If a name is already defined. + * @param value the new name. + * @throws IllegalStateException if a name is already defined. */ public final void setNameType(final DefaultLocalName value) throws IllegalStateException { ensureUndefined(); Modified: sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gco/PropertyType.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gco/PropertyType.java?rev=1779559&r1=1779558&r2=1779559&view=diff ============================================================================== --- sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gco/PropertyType.java [UTF-8] (original) +++ sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gco/PropertyType.java [UTF-8] Fri Jan 20 04:34:26 2017 @@ -102,8 +102,8 @@ import org.apache.sis.util.resources.Err * abstract {@code getElement()} from this class.</li> * </ul></div> * - * @param <ValueType> The adapter subclass. - * @param <BoundType> The interface being adapted. + * @param <ValueType> the adapter subclass. + * @param <BoundType> the interface being adapted. * * @author Cédric Briançon (Geomatys) * @author Martin Desruisseaux (Geomatys) Modified: sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gco/StringAdapter.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gco/StringAdapter.java?rev=1779559&r1=1779558&r2=1779559&view=diff ============================================================================== --- sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gco/StringAdapter.java [UTF-8] (original) +++ sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gco/StringAdapter.java [UTF-8] Fri Jan 20 04:34:26 2017 @@ -48,8 +48,8 @@ public class StringAdapter extends XmlAd * If the context is {@code null} or does not specify any locale, then the choice * of locale is left to the {@link InternationalString#toString()} implementation. * - * @param text The {@code CharSequence} to convert to a {@code String}, or {@code null}. - * @return The localized representation of the given text, or {@code null} if the text was null. + * @param text the {@code CharSequence} to convert to a {@code String}, or {@code null}. + * @return the localized representation of the given text, or {@code null} if the text was null. * * @see org.apache.sis.xml.XML#LOCALE */ @@ -62,8 +62,10 @@ public class StringAdapter extends XmlAd if (context != null) { final Locale locale = context.getLocale(); if (locale != null) { - // While Apache SIS accepts null locale, foreigner - // implementations are not guaranteed to support null. + /* + * While Apache SIS accepts null locale, foreigner + * implementations are not guaranteed to support null. + */ return ((InternationalString) text).toString(locale); } } @@ -75,8 +77,8 @@ public class StringAdapter extends XmlAd * Returns the string representation of the given {@code GO_CharacterString} for the current locale. * The locale is determined by the {@link org.apache.sis.xml.XML#LOCALE} property given to the marshaller. * - * @param value The wrapper for the value, or {@code null}. - * @return The string representation of the given text, or {@code null}. + * @param value the wrapper for the value, or {@code null}. + * @return the string representation of the given text, or {@code null}. */ static String toString(final GO_CharacterString value) { return (value != null) ? toString(value.toCharSequence()) : null; @@ -88,8 +90,8 @@ public class StringAdapter extends XmlAd * sequence is an instance of {@link InternationalString}, then the locale from * the current unmashalling context is used in order to get a string. * - * @param value The wrapper for the value, or {@code null}. - * @return The unwrapped {@link String} value, or {@code null}. + * @param value the wrapper for the value, or {@code null}. + * @return the unwrapped {@link String} value, or {@code null}. */ @Override public String unmarshal(final GO_CharacterString value) { @@ -100,8 +102,8 @@ public class StringAdapter extends XmlAd * Converts a {@linkplain String string} to the object to be marshalled in a XML file or stream. * JAXB calls automatically this method at marshalling time. * - * @param value The string value, or {@code null}. - * @return The wrapper for the given string, or {@code null}. + * @param value the string value, or {@code null}. + * @return the wrapper for the given string, or {@code null}. */ @Override public GO_CharacterString marshal(final String value) { Modified: sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gco/URIAdapter.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gco/URIAdapter.java?rev=1779559&r1=1779558&r2=1779559&view=diff ============================================================================== --- sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gco/URIAdapter.java [UTF-8] (original) +++ sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gco/URIAdapter.java [UTF-8] Fri Jan 20 04:34:26 2017 @@ -42,9 +42,9 @@ public final class URIAdapter extends Xm * Converts a URI read from a XML stream to the object containing the value. * JAXB calls automatically this method at unmarshalling time. * - * @param value The wrapper for the URI value, or {@code null}. - * @return A {@link URI} which represents the URI value, or {@code null}. - * @throws URISyntaxException If the string is not a valid URI. + * @param value the wrapper for the URI value, or {@code null}. + * @return a {@link URI} which represents the URI value, or {@code null}. + * @throws URISyntaxException if the string is not a valid URI. */ @Override public URI unmarshal(final GO_CharacterString value) throws URISyntaxException { @@ -60,8 +60,8 @@ public final class URIAdapter extends Xm * Converts a {@link URI} to the object to be marshalled in a XML file or stream. * JAXB calls automatically this method at marshalling time. * - * @param value The URI value, or {@code null}. - * @return The wrapper for the given URI, or {@code null}. + * @param value the URI value, or {@code null}. + * @return the wrapper for the given URI, or {@code null}. */ @Override public GO_CharacterString marshal(final URI value) { Modified: sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gco/UnitAdapter.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gco/UnitAdapter.java?rev=1779559&r1=1779558&r2=1779559&view=diff ============================================================================== --- sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gco/UnitAdapter.java [UTF-8] (original) +++ sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gco/UnitAdapter.java [UTF-8] Fri Jan 20 04:34:26 2017 @@ -37,8 +37,8 @@ public class UnitAdapter extends XmlAdap /** * Returns a unit for the given string. * - * @param value The unit symbol. - * @return The unit for the given symbol. + * @param value the unit symbol. + * @return the unit for the given symbol. * @throws IllegalArgumentException if the given symbol is unknown. */ @Override @@ -50,8 +50,8 @@ public class UnitAdapter extends XmlAdap /** * Returns the symbol of the given unit. * - * @param value The unit. - * @return The unit symbol. + * @param value the unit. + * @return the unit symbol. */ @Override public String marshal(final Unit<?> value) { Modified: sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gmd/CodeListAdapter.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gmd/CodeListAdapter.java?rev=1779559&r1=1779558&r2=1779559&view=diff ============================================================================== --- sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gmd/CodeListAdapter.java [UTF-8] (original) +++ sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gmd/CodeListAdapter.java [UTF-8] Fri Jan 20 04:34:26 2017 @@ -64,7 +64,7 @@ public abstract class CodeListAdapter<Va /** * Creates a wrapper for a {@link CodeList}, in order to handle the format specified in ISO-19139. * - * @param value The value of {@link CodeList} to be marshalled. + * @param value the value of {@link CodeList} to be marshalled. */ protected CodeListAdapter(final CodeListUID value) { identifier = value; @@ -82,15 +82,15 @@ public abstract class CodeListAdapter<Va * For example {@link org.apache.sis.internal.jaxb.code.MD_RestrictionCode} * replaces {@code "licence"} by {@code "license"} for ISO 19115:2003 compatibility. * - * @param value The value of {@link CodeList}, to be marshalled. - * @return The wrapper for the code list value. + * @param value the value of {@link CodeList}, to be marshalled. + * @return the wrapper for the code list value. */ protected abstract ValueType wrap(CodeListUID value); /** * Returns the class of code list wrapped by this adapter. * - * @return The code list class. + * @return the code list class. */ protected abstract Class<BoundType> getCodeListClass(); @@ -98,8 +98,8 @@ public abstract class CodeListAdapter<Va * Substitutes the adapter value read from an XML stream by the object which will * contain the value. JAXB calls automatically this method at unmarshalling time. * - * @param adapter The adapter for this metadata value. - * @return A code list which represents the metadata value. + * @param adapter the adapter for this metadata value. + * @return a code list which represents the metadata value. */ @Override public final BoundType unmarshal(final ValueType adapter) { @@ -110,8 +110,8 @@ public abstract class CodeListAdapter<Va * Substitutes the code list by the adapter to be marshalled into an XML file * or stream. JAXB calls automatically this method at marshalling time. * - * @param code The code list value. - * @return The adapter for the given code list. + * @param code the code list value. + * @return the adapter for the given code list. */ @Override public final ValueType marshal(final BoundType code) { @@ -148,7 +148,7 @@ public abstract class CodeListAdapter<Va * Invoked by JAXB on marshalling. Subclasses must override this * method with the appropriate {@code @XmlElement} annotation. * - * @return The {@code CodeList} value to be marshalled. + * @return the {@code CodeList} value to be marshalled. */ public abstract CodeListUID getElement(); Modified: sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gmd/CodeListUID.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gmd/CodeListUID.java?rev=1779559&r1=1779558&r2=1779559&view=diff ============================================================================== --- sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gmd/CodeListUID.java [UTF-8] (original) +++ sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gmd/CodeListUID.java [UTF-8] Fri Jan 20 04:34:26 2017 @@ -59,13 +59,13 @@ public final class CodeListUID { * <li>{@code "http://schemas.opengis.net/iso/19139/20070417/resources/Codelist/gmxCodelists.xml#CI_OnLineFunctionCode"}</li> * </ul> * - * @param context The current (un)marshalling context, or {@code null} if none. - * @param identifier The UML identifier of the code list. - * @return The URL to the given code list in the given schema. + * @param context the current (un)marshalling context, or {@code null} if none. + * @param identifier the UML identifier of the code list. + * @return the URL to the given code list in the given schema. */ private static String schema(final Context context, final String identifier) { return Context.schema(context, "gmd", Schemas.METADATA_ROOT) - .append(Schemas.CODELISTS_PATH) // Future SIS version may switch between localized/unlocalized file. + .append(Schemas.CODELISTS_PATH) // Future SIS version may switch between localized/unlocalized file. .append('#').append(identifier).toString(); } @@ -109,11 +109,11 @@ public final class CodeListUID { /** * Builds a code list with the given attributes. * - * @param context The current (un)marshalling context, or {@code null} if none. - * @param codeList The {@code codeList} attribute, to be concatenated after the {@code "#"} symbol. - * @param codeListValue The {@code codeListValue} attribute, to be declared in the XML element. - * @param codeSpace The 3-letters language code of the {@code value} attribute, or {@code null} if none. - * @param value The value in the language specified by the {@code codeSpace} attribute, or {@code null} if none. + * @param context the current (un)marshalling context, or {@code null} if none. + * @param codeList the {@code codeList} attribute, to be concatenated after the {@code "#"} symbol. + * @param codeListValue the {@code codeListValue} attribute, to be declared in the XML element. + * @param codeSpace the 3-letters language code of the {@code value} attribute, or {@code null} if none. + * @param value the value in the language specified by the {@code codeSpace} attribute, or {@code null} if none. */ public CodeListUID(final Context context, final String codeList, final String codeListValue, final String codeSpace, final String value) @@ -128,8 +128,8 @@ public final class CodeListUID { * Builds a value for {@link CodeListAdapter} elements. * This constructors stores the values that will be used for marshalling. * - * @param context The current (un)marshalling context, or {@code null} if none. - * @param code The code list to wrap. + * @param context the current (un)marshalling context, or {@code null} if none. + * @param code the code list to wrap. */ public CodeListUID(final Context context, final CodeList<?> code) { final String classID = Types.getListName(code); @@ -155,9 +155,11 @@ public final class CodeListUID { if (value != null) { codeSpace = Context.converter(context).toLanguageCode(context, locale); } else { - // Fallback when no value is defined for the code list. Build a value from the - // most descriptive name (excluding the field name), which is usually the UML - // name except for CharacterSet in which case it is a string like "UTF-8". + /* + * Fallback when no value is defined for the code list. Build a value from the + * most descriptive name (excluding the field name), which is usually the UML + * name except for CharacterSet in which case it is a string like "UTF-8". + */ value = Types.getCodeLabel(code); } codeListValue = fieldID; @@ -169,7 +171,7 @@ public final class CodeListUID { * code list is actually used as an enumeration, then the above attribute * is null and we have to use directly the {@linkplain #value} instead. * - * @return The identifier to be given to the {@code CodeList.valueOf(…)} method. + * @return the identifier to be given to the {@code CodeList.valueOf(…)} method. */ @Override public String toString() { Modified: sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gmd/Country.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gmd/Country.java?rev=1779559&r1=1779558&r2=1779559&view=diff ============================================================================== --- sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gmd/Country.java [UTF-8] (original) +++ sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gmd/Country.java [UTF-8] Fri Jan 20 04:34:26 2017 @@ -73,10 +73,10 @@ public final class Country extends GO_Ch * Builds a {@code <Country>} element. * For private use by {@link #create(Context, Locale)} only. * - * @param context The current (un)marshalling context, or {@code null} if none. - * @param codeListValue The {@code codeListValue} attribute in the XML element. - * @param codeSpace The 3-letters language code of the {@code value} attribute, or {@code null} if none. - * @param value The value in the language specified by the {@code codeSpace} attribute, or {@code null} if none. + * @param context the current (un)marshalling context, or {@code null} if none. + * @param codeListValue the {@code codeListValue} attribute in the XML element. + * @param codeSpace the 3-letters language code of the {@code value} attribute, or {@code null} if none. + * @param value the value in the language specified by the {@code codeSpace} attribute, or {@code null} if none. */ private Country(final Context context, final String codeListValue, final String codeSpace, final String value) { identifier = new CodeListUID(context, "Country", codeListValue, codeSpace, value); @@ -85,9 +85,9 @@ public final class Country extends GO_Ch /** * Creates a new wrapper for the given locale. * - * @param context The current (un)marshalling context, or {@code null} if none. - * @param locale The value to marshal, or {@code null}. - * @return The country to marshal, or {@code null} if the given locale was null + * @param context the current (un)marshalling context, or {@code null} if none. + * @param locale the value to marshal, or {@code null}. + * @return the country to marshal, or {@code null} if the given locale was null * or if its {@link Locale#getCountry()} attribute is the empty string. */ public static Country create(final Context context, final Locale locale) { @@ -120,11 +120,11 @@ public final class Country extends GO_Ch /** * Returns the locale for the given language and country (which may be null), or {@code null} if none. * - * @param context The current (un)marshalling context, or {@code null} if none. - * @param language The wrapper for the language value. - * @param country The wrapper for the country value. - * @param caller The class which is invoking this method, used only in case of warning. - * @return A locale which represents the language and country value. + * @param context the current (un)marshalling context, or {@code null} if none. + * @param language the wrapper for the language value. + * @param country the wrapper for the country value. + * @param caller the class which is invoking this method, used only in case of warning. + * @return a locale which represents the language and country value. */ public static Locale getLocale(final Context context, final LanguageCode language, final Country country, final Class<?> caller) Modified: sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gmd/GO_URL.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gmd/GO_URL.java?rev=1779559&r1=1779558&r2=1779559&view=diff ============================================================================== --- sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gmd/GO_URL.java [UTF-8] (original) +++ sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gmd/GO_URL.java [UTF-8] Fri Jan 20 04:34:26 2017 @@ -50,7 +50,7 @@ public final class GO_URL extends XmlAda /** * Builds an adapter for the given URI. * - * @param value The URI to marshal. + * @param value the URI to marshal. */ private GO_URL(final URI value) { uri = value.toString(); @@ -60,8 +60,8 @@ public final class GO_URL extends XmlAda * Converts a URI read from a XML stream to the object which will contains * the value. JAXB calls automatically this method at unmarshalling time. * - * @param value The adapter for this metadata value. - * @return A {@link URI} which represents the metadata value. + * @param value the adapter for this metadata value. + * @return a {@link URI} which represents the metadata value. * @throws URISyntaxException if the given value contains an invalid URI. */ @Override @@ -77,8 +77,8 @@ public final class GO_URL extends XmlAda * Converts a {@link URI} to the object to be marshalled in a XML file * or stream. JAXB calls automatically this method at marshalling time. * - * @param value The URI value. - * @return The adapter for this URI. + * @param value the URI value. + * @return the adapter for this URI. */ @Override public GO_URL marshal(final URI value) { Modified: sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gmd/LanguageCode.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gmd/LanguageCode.java?rev=1779559&r1=1779558&r2=1779559&view=diff ============================================================================== --- sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gmd/LanguageCode.java [UTF-8] (original) +++ sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gmd/LanguageCode.java [UTF-8] Fri Jan 20 04:34:26 2017 @@ -71,10 +71,10 @@ public final class LanguageCode extends * Builds a {@code <LanguageCode>} element. * For private use by {@link #create(Context, Locale)} only. * - * @param context The current (un)marshalling context, or {@code null} if none. - * @param codeListValue The {@code codeListValue} attribute in the XML element. - * @param codeSpace The 3-letters language code of the {@code value} attribute, or {@code null} if none. - * @param value The value in the language specified by the {@code codeSpace} attribute, or {@code null} if none. + * @param context the current (un)marshalling context, or {@code null} if none. + * @param codeListValue the {@code codeListValue} attribute in the XML element. + * @param codeSpace the 3-letters language code of the {@code value} attribute, or {@code null} if none. + * @param value the value in the language specified by the {@code codeSpace} attribute, or {@code null} if none. */ private LanguageCode(final Context context, final String codeListValue, final String codeSpace, final String value) { identifier = new CodeListUID(context, "LanguageCode", codeListValue, codeSpace, value); @@ -83,9 +83,9 @@ public final class LanguageCode extends /** * Creates a new wrapper for the given locale. * - * @param context The current (un)marshalling context, or {@code null} if none. - * @param locale The value to marshal, or {@code null}. - * @return The language to marshal, or {@code null} if the given locale was null + * @param context the current (un)marshalling context, or {@code null} if none. + * @param locale the value to marshal, or {@code null}. + * @return the language to marshal, or {@code null} if the given locale was null * or if its {@link Locale#getLanguage()} attribute is the empty string. */ public static LanguageCode create(final Context context, final Locale locale) { @@ -132,7 +132,7 @@ public final class LanguageCode extends * Returns the language, or {@code null} if none. The language is expected to * be a 2- or 3-letters ISO 639 code, but this is not verified by this method. * - * @return The language code + * @return the language code */ public String getLanguage() { String code; Modified: sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gmd/LocaleAdapter.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gmd/LocaleAdapter.java?rev=1779559&r1=1779558&r2=1779559&view=diff ============================================================================== --- sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gmd/LocaleAdapter.java [UTF-8] (original) +++ sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gmd/LocaleAdapter.java [UTF-8] Fri Jan 20 04:34:26 2017 @@ -51,8 +51,8 @@ public final class LocaleAdapter extends * Converts the locale read from a XML stream to the object containing the value. * JAXB calls automatically this method at unmarshalling time. * - * @param value The adapter for this metadata value. - * @return A {@linkplain Locale locale} which represents the metadata value. + * @param value the adapter for this metadata value. + * @return a {@linkplain Locale locale} which represents the metadata value. */ @Override public Locale unmarshal(final LanguageCode value) { @@ -64,8 +64,8 @@ public final class LocaleAdapter extends * Converts the {@linkplain Locale locale} to the object to be marshalled in a XML file or stream. * JAXB calls automatically this method at marshalling time. * - * @param value The locale value. - * @return The adapter for the given locale. + * @param value the locale value. + * @return the adapter for the given locale. */ @Override public LanguageCode marshal(final Locale value) { Modified: sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gmd/LocalisedCharacterString.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gmd/LocalisedCharacterString.java?rev=1779559&r1=1779558&r2=1779559&view=diff ============================================================================== --- sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gmd/LocalisedCharacterString.java [UTF-8] (original) +++ sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gmd/LocalisedCharacterString.java [UTF-8] Fri Jan 20 04:34:26 2017 @@ -17,14 +17,12 @@ package org.apache.sis.internal.jaxb.gmd; import java.util.Locale; +import java.util.Objects; import javax.xml.bind.annotation.XmlValue; import javax.xml.bind.annotation.XmlAttribute; import org.apache.sis.internal.jaxb.Context; import org.apache.sis.util.Debug; -// Branch-dependent imports -import java.util.Objects; - /** * The {@code <LocalisedCharacterString>} elements nested in a {@code <textGroup>} one. @@ -67,8 +65,8 @@ final class LocalisedCharacterString { /** * Constructs a localized string for the given locale and text. * - * @param locale The string language. - * @param text The string. + * @param locale the string language. + * @param text the string. */ LocalisedCharacterString(final Locale locale, final String text) { this.locale = locale; @@ -78,7 +76,7 @@ final class LocalisedCharacterString { /** * Returns the locale language for {@code <LocalisedCharacterString>} attribute. * - * @return The current locale. + * @return the current locale. * @see <a href="https://issues.apache.org/jira/browse/SIS-137">SIS-137</a> */ @XmlAttribute(name = "locale", required = true) @@ -94,7 +92,7 @@ final class LocalisedCharacterString { * Sets the locale language, using a string formatted as {@code #locale-xxx}, * where {@code xxx} are the two or three letters representing the language. * - * @param localeId The new locale. + * @param localeId the new locale. * @see <a href="https://issues.apache.org/jira/browse/SIS-137">SIS-137</a> */ public void setLocale(final String localeId) { Modified: sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gmd/PT_FreeText.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gmd/PT_FreeText.java?rev=1779559&r1=1779558&r2=1779559&view=diff ============================================================================== --- sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gmd/PT_FreeText.java [UTF-8] (original) +++ sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gmd/PT_FreeText.java [UTF-8] Fri Jan 20 04:34:26 2017 @@ -91,8 +91,8 @@ public final class PT_FreeText extends G * duplicate the {@code <gco:CharacterString>} element, or the unlocalized string normally * written in {@code <gco:CharacterString>} may be missing.</p> * - * @param text The text to write in the {@code <gco:CharacterString>} element. - * @param textGroup The text group elements. + * @param text the text to write in the {@code <gco:CharacterString>} element. + * @param textGroup the text group elements. * * @see org.apache.sis.xml.XML#LOCALE */ @@ -106,8 +106,8 @@ public final class PT_FreeText extends G * if it contains at least one non-root locale. Otherwise returns {@code null}, meaning that * the simpler {@link GO_CharacterString} construct should be used instead. * - * @param text An international string which could have several translations embedded for the same text. - * @return A {@code PT_FreeText} instance if the given text has several translations, or {@code null} otherwise. + * @param text an international string which could have several translations embedded for the same text. + * @return a {@code PT_FreeText} instance if the given text has several translations, or {@code null} otherwise. */ public static PT_FreeText create(final InternationalString text) { if (text instanceof DefaultInternationalString) { @@ -141,7 +141,7 @@ public final class PT_FreeText extends G * field is intentionally omitted since it is usually the text we are searching for! * (this method is used for detecting duplicated values). * - * @param search The text to search (usually the {@link #text} value). + * @param search the text to search (usually the {@link #text} value). * @return {@code true} if the given text has been found. */ private boolean contains(final String search) { @@ -166,7 +166,7 @@ public final class PT_FreeText extends G /** * Returns the content of this {@code <gco:CharacterString>} as an {@code InternationalString}. * - * @return The character sequence for this {@code <gco:CharacterString>}. + * @return the character sequence for this {@code <gco:CharacterString>}. */ @Override protected CharSequence toCharSequence() { Modified: sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gmd/TextGroup.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gmd/TextGroup.java?rev=1779559&r1=1779558&r2=1779559&view=diff ============================================================================== --- sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gmd/TextGroup.java [UTF-8] (original) +++ sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gmd/TextGroup.java [UTF-8] Fri Jan 20 04:34:26 2017 @@ -100,8 +100,8 @@ final class TextGroup { * it would be possible to declare an other constructor allowing the more compact form * (the smaller ) if there is a need for that in the future. * - * @param locale The string language. - * @param text The string. + * @param locale the string language. + * @param text the string. */ TextGroup(final Locale locale, final String text) { localized = new LocalisedCharacterString[] { Modified: sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gml/CodeListAdapter.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gml/CodeListAdapter.java?rev=1779559&r1=1779558&r2=1779559&view=diff ============================================================================== --- sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gml/CodeListAdapter.java [UTF-8] (original) +++ sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gml/CodeListAdapter.java [UTF-8] Fri Jan 20 04:34:26 2017 @@ -43,7 +43,7 @@ public abstract class CodeListAdapter<Bo /** * Returns the class of code list wrapped by this adapter. * - * @return The code list class. + * @return the code list class. */ protected abstract Class<BoundType> getCodeListClass(); @@ -51,7 +51,7 @@ public abstract class CodeListAdapter<Bo * Returns the default code space for the wrapped code list. * The default implementation returns {@code null}. * - * @return The default code space, or {@code null}. + * @return the default code space, or {@code null}. */ protected String getCodeSpace() { return null; @@ -62,7 +62,7 @@ public abstract class CodeListAdapter<Bo * contain the value. JAXB calls automatically this method at unmarshalling time. * * @param identifier The code space and identifier. - * @return A code list which represents the GML value. + * @return a code list which represents the GML value. */ @Override public final BoundType unmarshal(final CodeListUID identifier) { @@ -73,8 +73,8 @@ public abstract class CodeListAdapter<Bo * Substitutes the code list by the proxy to be marshalled into an XML file * or stream. JAXB calls automatically this method at marshalling time. * - * @param code The code list value. - * @return The proxy for the given code list. + * @param code the code list value. + * @return the proxy for the given code list. */ @Override public final CodeListUID marshal(final BoundType code) { Modified: sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gml/CodeListUID.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gml/CodeListUID.java?rev=1779559&r1=1779558&r2=1779559&view=diff ============================================================================== --- sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gml/CodeListUID.java [UTF-8] (original) +++ sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gml/CodeListUID.java [UTF-8] Fri Jan 20 04:34:26 2017 @@ -31,7 +31,7 @@ import org.apache.sis.util.iso.Types; * @version 0.7 * @module */ -final class CodeListUID { +public final class CodeListUID { /** * The code space of the {@link #value} as an URI, or {@code null}. */ Modified: sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gml/Measure.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gml/Measure.java?rev=1779559&r1=1779558&r2=1779559&view=diff ============================================================================== --- sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gml/Measure.java [UTF-8] (original) +++ sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gml/Measure.java [UTF-8] Fri Jan 20 04:34:26 2017 @@ -112,8 +112,8 @@ public final class Measure { * Constructs a representation of the measure as defined in ISO-19103 standard, * with the UOM attribute like {@code "gmxUom.xml#xpointer(//*[@gml:id='m'])"}. * - * @param value The value of the measure. - * @param unit The unit of measurement. + * @param value the value of the measure. + * @param unit the unit of measurement. */ public Measure(final double value, final Unit<?> unit) { this.value = value; @@ -150,9 +150,9 @@ public final class Measure { * {@code uom} attribute, instead of letting the {@code uom} attribute on the measurement value. * The main example is {@link org.apache.sis.referencing.cs.DefaultCoordinateSystemAxis}. * - * @param unit the unit to format. - * @param asXPointer {@code true} if the units shall be formatted as {@code xpointer}. - * @param inAxis {@code true} for a unit used in Coordinate System Axis definition. + * @param unit the unit to format. + * @param asXPointer {@code true} if the units shall be formatted as {@code xpointer}. + * @param inAxis {@code true} for a unit used in Coordinate System Axis definition. * @return the string representation of the unit of measure. */ public static String getUOM(final Unit<?> unit, final boolean asXPointer, final boolean inAxis) { Modified: sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gml/MeasureList.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gml/MeasureList.java?rev=1779559&r1=1779558&r2=1779559&view=diff ============================================================================== --- sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gml/MeasureList.java [UTF-8] (original) +++ sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gml/MeasureList.java [UTF-8] Fri Jan 20 04:34:26 2017 @@ -63,10 +63,10 @@ public final class MeasureList { /** * Creates a list of measures backed by the given array. * - * @param <E> Compile-time value of {@code elementType}. - * @param array The measure values as a Java array. - * @param elementType The type of elements in the given array. Primitive type shall be replaced by their wrapper. - * @param unit The unit of measurement. + * @param <E> compile-time value of {@code elementType}. + * @param array the measure values as a Java array. + * @param elementType the type of elements in the given array. Primitive type shall be replaced by their wrapper. + * @param unit the unit of measurement. */ public <E> MeasureList(final Object array, final Class<E> elementType, final Unit<?> unit) { this.unit = unit; @@ -87,7 +87,7 @@ public final class MeasureList { /** * Constructs a string representation of the units. * - * @return A string representation of the unit. + * @return a string representation of the unit. */ @XmlAttribute(name = "uom", required = true) public String getUOM() { @@ -97,8 +97,8 @@ public final class MeasureList { /** * Sets the unit of measure. This method is invoked by JAXB at unmarshalling time. * - * @param uom The unit of measure as a string. - * @throws URISyntaxException If the {@code uom} looks like a URI, but can not be parsed. + * @param uom the unit of measure as a string. + * @throws URISyntaxException if the {@code uom} looks like a URI, but can not be parsed. */ public void setUOM(String uom) throws URISyntaxException { final Context context = Context.current(); @@ -108,7 +108,7 @@ public final class MeasureList { /** * Returns the values as an array. * - * @return The values, or {@code null} if none. + * @return the values, or {@code null} if none. */ public double[] toArray() { if (values == null) { Modified: sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gml/SC_VerticalCRS.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gml/SC_VerticalCRS.java?rev=1779559&r1=1779558&r2=1779559&view=diff ============================================================================== --- sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gml/SC_VerticalCRS.java [UTF-8] (original) +++ sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gml/SC_VerticalCRS.java [UTF-8] Fri Jan 20 04:34:26 2017 @@ -77,7 +77,7 @@ public class SC_VerticalCRS extends Prop /** * Wraps a Vertical CRS value with a {@code <gml:VerticalCRS>} element at marshalling-time. * - * @param metadata The metadata value to marshal. + * @param metadata the metadata value to marshal. */ protected SC_VerticalCRS(final VerticalCRS metadata) { super(metadata); @@ -86,8 +86,8 @@ public class SC_VerticalCRS extends Prop /** * Returns the Vertical CRS value wrapped by a {@code <gml:VerticalCRS>} element. * - * @param value The value to marshal. - * @return The adapter which wraps the metadata value. + * @param value the value to marshal. + * @return the adapter which wraps the metadata value. */ @Override protected SC_VerticalCRS wrap(final VerticalCRS value) { @@ -113,7 +113,7 @@ public class SC_VerticalCRS extends Prop * return skip() ? null : DefaultVerticalCRS.castOrCopy(metadata); * } * - * @return The metadata to be marshalled. + * @return the metadata to be marshalled. */ @XmlAnyElement(lax = true) public Object getElement() { @@ -127,7 +127,7 @@ public class SC_VerticalCRS extends Prop * of {@link VerticalCRS}, then this method assigns that value to the {@link #metadata} field. * Otherwise this method does nothing. * - * @param crs The unmarshalled metadata. + * @param crs the unmarshalled metadata. */ public final void setElement(final Object crs) { if (crs instanceof VerticalCRS) { Modified: sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gml/TimeInstant.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gml/TimeInstant.java?rev=1779559&r1=1779558&r2=1779559&view=diff ============================================================================== --- sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gml/TimeInstant.java [UTF-8] (original) +++ sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gml/TimeInstant.java [UTF-8] Fri Jan 20 04:34:26 2017 @@ -64,7 +64,7 @@ public final class TimeInstant extends G /** * Creates a new time instant initialized to the given value. * - * @param instant The initial instant value. + * @param instant the initial instant value. */ public TimeInstant(final Instant instant) { timePosition = toXML(instant); @@ -101,7 +101,7 @@ public final class TimeInstant extends G /** * Returns a string representation for debugging and formatting error message. * - * @return A string representation of this time instant. + * @return a string representation of this time instant. */ @Override public String toString() { Modified: sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gml/TimePeriod.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gml/TimePeriod.java?rev=1779559&r1=1779558&r2=1779559&view=diff ============================================================================== --- sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gml/TimePeriod.java [UTF-8] (original) +++ sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gml/TimePeriod.java [UTF-8] Fri Jan 20 04:34:26 2017 @@ -75,7 +75,7 @@ public final class TimePeriod extends GM /** * Creates a new Time Period bounded by the begin and end time specified in the given object. * - * @param period The period to use for initializing this object. + * @param period the period to use for initializing this object. */ public TimePeriod(final Period period) { super(period); @@ -93,7 +93,7 @@ public final class TimePeriod extends GM /** * Returns a string representation for debugging and formatting error message. * - * @return A string representation of this time period. + * @return a string representation of this time period. */ @Override public String toString() { Modified: sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gml/TimePeriodBound.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gml/TimePeriodBound.java?rev=1779559&r1=1779558&r2=1779559&view=diff ============================================================================== --- sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gml/TimePeriodBound.java [UTF-8] (original) +++ sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gml/TimePeriodBound.java [UTF-8] Fri Jan 20 04:34:26 2017 @@ -54,7 +54,7 @@ public abstract class TimePeriodBound { /** * Returns a string representation of this bound for debugging purpose. * - * @return A string representation of the time currently set. + * @return a string representation of the time currently set. */ @Override public String toString() { @@ -100,8 +100,8 @@ public abstract class TimePeriodBound { /** * Creates a bound initialized to the given instant. * - * @param instant The instant of the new bound, or {@code null}. - * @param indeterminate The value to give to {@link #indeterminatePosition} if the date is null. + * @param instant the instant of the new bound, or {@code null}. + * @param indeterminate the value to give to {@link #indeterminatePosition} if the date is null. */ GML3(final Instant instant, final String indeterminate) { value = TimeInstant.toXML(instant); Modified: sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gmx/Anchor.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gmx/Anchor.java?rev=1779559&r1=1779558&r2=1779559&view=diff ============================================================================== --- sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gmx/Anchor.java [UTF-8] (original) +++ sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gmx/Anchor.java [UTF-8] Fri Jan 20 04:34:26 2017 @@ -18,14 +18,12 @@ package org.apache.sis.internal.jaxb.gmx import java.net.URI; import java.util.Locale; +import java.util.Objects; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlValue; import org.opengis.util.InternationalString; import org.apache.sis.xml.XLink; -// Branch-dependent imports -import java.util.Objects; - /** * The {@code Anchor} element, which is included in {@code CharacterString} elements. @@ -66,8 +64,8 @@ public final class Anchor extends XLink /** * Creates an {@code Anchor} initialized to the given {@code xlink} value. * - * @param xlink The {@code xlink} from which to copy the attributes. - * @param value Often a short textual description of the URI target. + * @param xlink the {@code xlink} from which to copy the attributes. + * @param value often a short textual description of the URI target. */ public Anchor(final XLink xlink, final String value) { super(xlink); @@ -77,8 +75,8 @@ public final class Anchor extends XLink /** * Creates an {@code Anchor} initialized to the given {@code href} value. * - * @param href A URI to an external resources or an identifier. - * @param value Often a short textual description of the URI target. + * @param href a URI to an external resources or an identifier. + * @param value often a short textual description of the URI target. */ public Anchor(final URI href, final String value) { setHRef(href); @@ -97,8 +95,8 @@ public final class Anchor extends XLink /** * Returns the text as a string, or {@code null} if none. * - * @param locale Ignored in current implementation. - * @return The anchor text, or {@code null} if none. + * @param locale ignored in current implementation. + * @return the anchor text, or {@code null} if none. */ @Override public String toString(final Locale locale) { @@ -134,7 +132,7 @@ public final class Anchor extends XLink original = ""; } final String substring = original.substring(start, end); - if (substring == original) { // Identity comparison is ok here. + if (substring == original) { // Identity comparison is ok here. return this; } return new Anchor(this, substring); @@ -144,7 +142,7 @@ public final class Anchor extends XLink * Compares the value of this object with the given international string for order. * Null values are sorted last. * - * @param other The string to compare with this anchor type. + * @param other the string to compare with this anchor type. */ @Override public int compareTo(final InternationalString other) { @@ -158,7 +156,7 @@ public final class Anchor extends XLink /** * Compares this {@code Anchor} with the given object for equality. * - * @param object The object to compare with this anchor type. + * @param object the object to compare with this anchor type. */ @Override public boolean equals(final Object object) { Modified: sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gmx/FileName.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gmx/FileName.java?rev=1779559&r1=1779558&r2=1779559&view=diff ============================================================================== --- sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gmx/FileName.java [UTF-8] (original) +++ sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gmx/FileName.java [UTF-8] Fri Jan 20 04:34:26 2017 @@ -50,8 +50,8 @@ public final class FileName { private String src; /** - * A human-readable description of the filename. If {@link #src} is null, - * then this will be taken as the file path. + * A human-readable description of the filename. + * If {@link #src} is null, then this will be taken as the file path. */ @XmlValue private String value; @@ -65,7 +65,7 @@ public final class FileName { /** * Creates a new {@code <gml:FileName>} for the given URI. * - * @param uri The string representation of the URI. + * @param uri the string representation of the URI. */ public FileName(final String uri) { src = uri; @@ -79,7 +79,7 @@ public final class FileName { * Returning {@code null} is usually not recommended for a {@code toString()} method, * but this class is for internal usage only.</div> * - * @return The file path, or {@code null} if none. + * @return the file path, or {@code null} if none. */ @Override public String toString() { Modified: sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gmx/MimeFileType.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gmx/MimeFileType.java?rev=1779559&r1=1779558&r2=1779559&view=diff ============================================================================== --- sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gmx/MimeFileType.java [UTF-8] (original) +++ sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gmx/MimeFileType.java [UTF-8] Fri Jan 20 04:34:26 2017 @@ -65,11 +65,11 @@ public final class MimeFileType { /** * Creates a new {@code <gml:MimeFileType>} for the given type. * - * @param type The MIME type. + * @param type the MIME type. */ public MimeFileType(final String type) { this.type = type; - this.value = type; // May provide a more human-redeable value in a future SIS version. + this.value = type; // May provide a more human-redeable value in a future SIS version. } /** @@ -79,7 +79,7 @@ public final class MimeFileType { * Returning {@code null} is usually not recommended for a {@code toString()} method, * but this class is for internal usage only.</div> * - * @return The MIME type, or {@code null} if none. + * @return the MIME type, or {@code null} if none. */ @Override public String toString() { Modified: sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gmx/MimeFileTypeAdapter.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gmx/MimeFileTypeAdapter.java?rev=1779559&r1=1779558&r2=1779559&view=diff ============================================================================== --- sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gmx/MimeFileTypeAdapter.java [UTF-8] (original) +++ sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/jaxb/gmx/MimeFileTypeAdapter.java [UTF-8] Fri Jan 20 04:34:26 2017 @@ -41,8 +41,8 @@ public final class MimeFileTypeAdapter e * Converts a MIME type to the object to be marshalled in a XML file or stream. * JAXB calls automatically this method at marshalling time. * - * @param value The MIME type, or {@code null}. - * @return The wrapper for the given MIME type, or {@code null}. + * @param value the MIME type, or {@code null}. + * @return the wrapper for the given MIME type, or {@code null}. */ @Override public GO_CharacterString marshal(final String value) { Modified: sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/simple/SimpleAttributeType.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/simple/SimpleAttributeType.java?rev=1779559&r1=1779558&r2=1779559&view=diff ============================================================================== --- sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/simple/SimpleAttributeType.java [UTF-8] (original) +++ sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/simple/SimpleAttributeType.java [UTF-8] Fri Jan 20 04:34:26 2017 @@ -138,7 +138,7 @@ public final class SimpleAttributeType<V /** * Not used for this simple attribute type. * - * @return Always {@code null}. + * @return always {@code null}. */ public InternationalString getDescription() { return null; Modified: sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/system/DaemonThread.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/system/DaemonThread.java?rev=1779559&r1=1779558&r2=1779559&view=diff ============================================================================== --- sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/system/DaemonThread.java [UTF-8] (original) +++ sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/system/DaemonThread.java [UTF-8] Fri Jan 20 04:34:26 2017 @@ -83,9 +83,9 @@ abstract class DaemonThread extends Thre * * See {@link ReferenceQueueConsumer} for a real example. * - * @param name The thread name. - * @param lastCreatedDaemon The previous element in a chain of {@code DaemonThread}s, - * or {@code null}. Each SIS module shall maintain its own chain, if any. + * @param name the thread name. + * @param lastCreatedDaemon the previous element in a chain of {@code DaemonThread}s, or {@code null}. + * Each SIS module shall maintain its own chain, if any. */ protected DaemonThread(final String name, final DaemonThread lastCreatedDaemon) { super(Threads.DAEMONS, name); @@ -128,10 +128,10 @@ abstract class DaemonThread extends Thre * <p><strong>This method is for internal use by Apache SIS shutdown hooks only.</strong> * Users should never invoke this method explicitely.</p> * - * @param thread The first thread in the chain of threads to kill. - * @param stopWaitingAt A {@link System#nanoTime()} value telling when to stop waiting. + * @param thread the first thread in the chain of threads to kill. + * @param stopWaitingAt a {@link System#nanoTime()} value telling when to stop waiting. * This is used for preventing shutdown process to block an indefinite amount of time. - * @throws InterruptedException If an other thread invoked {@link #interrupt()} while + * @throws InterruptedException if an other thread invoked {@link #interrupt()} while * we were waiting for the daemon threads to die. * * @see Threads#shutdown(long) @@ -144,7 +144,7 @@ abstract class DaemonThread extends Thre while (thread != null) { final long delay = stopWaitingAt - System.nanoTime(); if (delay <= 0) break; - thread.join(delay / 1000000); // Convert nanoseconds to milliseconds. + thread.join(delay / 1000000); // Convert nanoseconds to milliseconds. thread = thread.previous; } } @@ -157,8 +157,8 @@ abstract class DaemonThread extends Thre * <p><strong>This method is for internal use by Apache SIS only.</strong> * Users should never invoke this method explicitely.</p> * - * @param thread The first thread in the chain of threads to verify. - * @return The list of stalled or dead threads, or {@code null} if none. + * @param thread the first thread in the chain of threads to verify. + * @return the list of stalled or dead threads, or {@code null} if none. */ static List<Thread> listStalledThreads(DaemonThread thread) { List<Thread> list = null; Modified: sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/system/DataDirectory.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/system/DataDirectory.java?rev=1779559&r1=1779558&r2=1779559&view=diff ============================================================================== --- sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/system/DataDirectory.java [UTF-8] (original) +++ sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/system/DataDirectory.java [UTF-8] Fri Jan 20 04:34:26 2017 @@ -111,7 +111,7 @@ public enum DataDirectory { * Returns the root directory fetched from the {@code SIS_DATA} environment variable. * If the environment variable is not set or the directory does not exist, then this method returns {@code null}. * - * @return The root SIS data directory, or {@code null} if none. + * @return the root SIS data directory, or {@code null} if none. */ public static synchronized Path getRootDirectory() { if (rootDirectory == null) try { @@ -146,7 +146,7 @@ public enum DataDirectory { * directory was not specified. If the {@code $SIS_DATA} directory exists but not the sub-directory, * then this method creates the sub-directory. * - * @return The sub-directory, or {@code null} if unspecified. + * @return the sub-directory, or {@code null} if unspecified. */ public synchronized Path getDirectory() { if (directory == null) { @@ -184,7 +184,7 @@ public enum DataDirectory { * path is returned as-is. * * @param file The path to resolve, or {@code null}. - * @return The path to use, or {@code null} if the given path was null. + * @return the path to use, or {@code null} if the given path was null. */ public Path resolve(Path file) { if (file != null && !file.isAbsolute()) { Modified: sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/system/DelayedExecutor.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/system/DelayedExecutor.java?rev=1779559&r1=1779558&r2=1779559&view=diff ============================================================================== --- sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/system/DelayedExecutor.java [UTF-8] (original) +++ sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/system/DelayedExecutor.java [UTF-8] Fri Jan 20 04:34:26 2017 @@ -82,8 +82,10 @@ public final class DelayedExecutor exten synchronized (Threads.class) { final DelayedExecutor thread; Threads.lastCreatedDaemon = thread = new DelayedExecutor(Threads.lastCreatedDaemon); - // Call to Thread.start() must be outside the constructor - // (Reference: Goetz et al.: "Java Concurrency in Practice"). + /* + * Call to Thread.start() must be outside the constructor + * (Reference: Goetz et al.: "Java Concurrency in Practice"). + */ thread.start(); } if (Supervisor.ENABLED) { @@ -125,8 +127,10 @@ public final class DelayedExecutor exten continue; } } catch (InterruptedException exception) { - // Probably the 'killAll' method has been invoked. - // We need to test 'isKillRequested()' below. + /* + * Probably the 'killAll' method has been invoked. + * We need to test 'isKillRequested()' below. + */ } catch (Throwable exception) { Logging.unexpectedException(Logging.getLogger(Loggers.SYSTEM), getClass(), "run", exception); } @@ -158,8 +162,10 @@ public final class DelayedExecutor exten } return true; } catch (InterruptedException e) { - // Someone doesn't want to let us wait. Since we didn't had the time to - // determine if the thread is stalled, conservatively return 'false'. + /* + * Someone doesn't want to let us wait. Since we didn't had the time to + * determine if the thread is stalled, conservatively return 'false'. + */ } return false; } Modified: sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/system/LocalizedStaticObject.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/system/LocalizedStaticObject.java?rev=1779559&r1=1779558&r2=1779559&view=diff ============================================================================== --- sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/system/LocalizedStaticObject.java [UTF-8] (original) +++ sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/system/LocalizedStaticObject.java [UTF-8] Fri Jan 20 04:34:26 2017 @@ -23,9 +23,9 @@ import java.lang.annotation.RetentionPol /** - * Annotates a static object using the {@linkplain java.util.Locale#getDefault() default locale} - * and {@linkplain java.util.TimeZone#getDefault() default timezone} values which existed at the - * object creation time. + * Annotates a static object created using the {@linkplain java.util.Locale#getDefault() default locale} + * and {@linkplain java.util.TimeZone#getDefault() default timezone} values which existed at the object + * creation time. * * If JDK provided listeners allowing SIS to be notified about locale and timezone changes, we would * reset the annotated object to {@code null}. However since those listeners do not exist as of JDK7, Modified: sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/system/Loggers.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/system/Loggers.java?rev=1779559&r1=1779558&r2=1779559&view=diff ============================================================================== --- sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/system/Loggers.java [UTF-8] (original) +++ sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/system/Loggers.java [UTF-8] Fri Jan 20 04:34:26 2017 @@ -128,7 +128,7 @@ public final class Loggers extends Stati * * <p>This method does not report the loggers that have an effective level identical to its parent logger.</p> * - * @return The effective logging levels of SIS loggers. + * @return the effective logging levels of SIS loggers. */ public static SortedMap<String,Level> getEffectiveLevels() { final SortedMap<String,Level> levels = new TreeMap<>(); Modified: sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/system/OS.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/system/OS.java?rev=1779559&r1=1779558&r2=1779559&view=diff ============================================================================== --- sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/system/OS.java [UTF-8] (original) +++ sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/system/OS.java [UTF-8] Fri Jan 20 04:34:26 2017 @@ -61,7 +61,7 @@ public enum OS { /** * Returns the operating system SIS is currently on. * - * @return The operation system. + * @return the operation system. */ public static OS current() { final String name = System.getProperty("os.name"); Modified: sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/system/OSGiActivator.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/system/OSGiActivator.java?rev=1779559&r1=1779558&r2=1779559&view=diff ============================================================================== --- sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/system/OSGiActivator.java [UTF-8] (original) +++ sis/trunk/core/sis-utility/src/main/java/org/apache/sis/internal/system/OSGiActivator.java [UTF-8] Fri Jan 20 04:34:26 2017 @@ -44,7 +44,7 @@ public final class OSGiActivator impleme /** * Invoked when this bundle is started. * - * @param context The execution context of the bundle being started. + * @param context the execution context of the bundle being started. */ @Override public void start(final BundleContext context) { @@ -56,8 +56,8 @@ public final class OSGiActivator impleme * Invoked when this bundle is stopped. * This method shutdowns the {@code sis-utility} threads. * - * @param context The execution context of the bundle being stopped. - * @throws Exception If an error occurred during unregistration of the supervisor MBean or resource disposal. + * @param context the execution context of the bundle being stopped. + * @throws Exception if an error occurred during unregistration of the supervisor MBean or resource disposal. */ @Override public void stop(final BundleContext context) throws Exception { @@ -69,7 +69,7 @@ public final class OSGiActivator impleme * Invoked when an other module has been installed or un-installed. * This method notifies the Apache SIS library that the classpath may have changed. * - * @param event The event that describe the life-cycle change. + * @param event the event that describe the life-cycle change. */ @Override public void bundleChanged(final BundleEvent event) {
