Author: desruisseaux Date: Mon Feb 2 14:28:14 2015 New Revision: 1656472 URL: http://svn.apache.org/r1656472 Log: Fixed javadoc warnings.
Modified: sis/branches/JDK8/core/sis-metadata/src/main/java/org/apache/sis/metadata/TreeTableView.java sis/branches/JDK8/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/DefaultMetadata.java sis/branches/JDK8/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/lineage/DefaultSource.java sis/branches/JDK8/core/sis-referencing/src/main/java/org/apache/sis/parameter/ParameterValueList.java sis/branches/JDK8/core/sis-utility/src/main/java/org/apache/sis/util/iso/DefaultRecordType.java sis/branches/JDK8/core/sis-utility/src/main/java/org/apache/sis/util/iso/RecordDefinition.java sis/branches/JDK8/core/sis-utility/src/main/java/org/apache/sis/util/resources/ResourceInternationalString.java Modified: sis/branches/JDK8/core/sis-metadata/src/main/java/org/apache/sis/metadata/TreeTableView.java URL: http://svn.apache.org/viewvc/sis/branches/JDK8/core/sis-metadata/src/main/java/org/apache/sis/metadata/TreeTableView.java?rev=1656472&r1=1656471&r2=1656472&view=diff ============================================================================== --- sis/branches/JDK8/core/sis-metadata/src/main/java/org/apache/sis/metadata/TreeTableView.java [UTF-8] (original) +++ sis/branches/JDK8/core/sis-metadata/src/main/java/org/apache/sis/metadata/TreeTableView.java [UTF-8] Mon Feb 2 14:28:14 2015 @@ -158,6 +158,9 @@ final class TreeTableView implements Tre /** * Invoked on serialization. Write the metadata object instead of the {@linkplain #root} node. + * + * @param out The output stream where to serialize this object. + * @throws IOException If an I/O error occurred while writing. */ private void writeObject(final ObjectOutputStream out) throws IOException { out.defaultWriteObject(); @@ -166,6 +169,10 @@ final class TreeTableView implements Tre /** * Invoked on deserialization. Recreate the {@linkplain #root} node from the metadata object. + * + * @param in The input stream from which to deserialize an object. + * @throws IOException If an I/O error occurred while reading or if the stream contains invalid data. + * @throws ClassNotFoundException If the class serialized on the stream is not on the classpath. */ private void readObject(final ObjectInputStream in) throws IOException, ClassNotFoundException { in.defaultReadObject(); Modified: sis/branches/JDK8/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/DefaultMetadata.java URL: http://svn.apache.org/viewvc/sis/branches/JDK8/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/DefaultMetadata.java?rev=1656472&r1=1656471&r2=1656472&view=diff ============================================================================== --- sis/branches/JDK8/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/DefaultMetadata.java [UTF-8] (original) +++ sis/branches/JDK8/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/DefaultMetadata.java [UTF-8] Mon Feb 2 14:28:14 2015 @@ -820,7 +820,7 @@ public class DefaultMetadata extends ISO * * @return Date that the metadata was created, or {@code null}. * - * @deprecated As of ISO 19115:2014, replaced by {@link #getDates()}. + * @deprecated As of ISO 19115:2014, replaced by {@link #getDateInfo()}. */ @Override @Deprecated @@ -842,7 +842,7 @@ public class DefaultMetadata extends ISO * * @param newValue The new date stamp. * - * @deprecated As of ISO 19115:2014, replaced by {@link #setDates(Collection)}. + * @deprecated As of ISO 19115:2014, replaced by {@link #setDateInfo(Collection)}. */ @Deprecated public void setDateStamp(final Date newValue) { Modified: sis/branches/JDK8/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/lineage/DefaultSource.java URL: http://svn.apache.org/viewvc/sis/branches/JDK8/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/lineage/DefaultSource.java?rev=1656472&r1=1656471&r2=1656472&view=diff ============================================================================== --- sis/branches/JDK8/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/lineage/DefaultSource.java [UTF-8] (original) +++ sis/branches/JDK8/core/sis-metadata/src/main/java/org/apache/sis/metadata/iso/lineage/DefaultSource.java [UTF-8] Mon Feb 2 14:28:14 2015 @@ -381,7 +381,7 @@ public class DefaultSource extends ISOMe * * @return Information about the extent of the source data. * - * @deprecated As of ISO 19115:2014, moved to {@link DefaultScope#getExtent()}. + * @deprecated As of ISO 19115:2014, moved to {@link DefaultScope#getExtents()}. */ @Override @Deprecated @@ -405,7 +405,7 @@ public class DefaultSource extends ISOMe * * @param newValues The new source extents. * - * @deprecated As of ISO 19115:2014, moved to {@link DefaultScope#setExtent(Extent)}. + * @deprecated As of ISO 19115:2014, moved to {@link DefaultScope#setExtents(Collection)}. */ @Deprecated public void setSourceExtents(final Collection<? extends Extent> newValues) { Modified: sis/branches/JDK8/core/sis-referencing/src/main/java/org/apache/sis/parameter/ParameterValueList.java URL: http://svn.apache.org/viewvc/sis/branches/JDK8/core/sis-referencing/src/main/java/org/apache/sis/parameter/ParameterValueList.java?rev=1656472&r1=1656471&r2=1656472&view=diff ============================================================================== --- sis/branches/JDK8/core/sis-referencing/src/main/java/org/apache/sis/parameter/ParameterValueList.java [UTF-8] (original) +++ sis/branches/JDK8/core/sis-referencing/src/main/java/org/apache/sis/parameter/ParameterValueList.java [UTF-8] Mon Feb 2 14:28:14 2015 @@ -326,6 +326,9 @@ final class ParameterValueList extends A /** * Trims the array to its capacity before to serialize. + * + * @param out The output stream where to serialize this object. + * @throws IOException If an I/O error occurred while writing. */ private void writeObject(final ObjectOutputStream out) throws IOException { values = ArraysExt.resize(values, size); Modified: sis/branches/JDK8/core/sis-utility/src/main/java/org/apache/sis/util/iso/DefaultRecordType.java URL: http://svn.apache.org/viewvc/sis/branches/JDK8/core/sis-utility/src/main/java/org/apache/sis/util/iso/DefaultRecordType.java?rev=1656472&r1=1656471&r2=1656472&view=diff ============================================================================== --- sis/branches/JDK8/core/sis-utility/src/main/java/org/apache/sis/util/iso/DefaultRecordType.java [UTF-8] (original) +++ sis/branches/JDK8/core/sis-utility/src/main/java/org/apache/sis/util/iso/DefaultRecordType.java [UTF-8] Mon Feb 2 14:28:14 2015 @@ -221,6 +221,10 @@ public class DefaultRecordType extends R /** * Invoked on deserialization for restoring the transient fields. * See {@link #writeObject(ObjectOutputStream)} for the stream data description. + * + * @param in The input stream from which to deserialize an object. + * @throws IOException If an I/O error occurred while reading or if the stream contains invalid data. + * @throws ClassNotFoundException If the class serialized on the stream is not on the classpath. */ private void readObject(final ObjectInputStream in) throws IOException, ClassNotFoundException { in.defaultReadObject(); @@ -241,6 +245,9 @@ public class DefaultRecordType extends R * * @serialData The number of members as an {@code int}, followed by a * ({@code MemberName}, {@code Type}) pair for each member. + * + * @param out The output stream where to serialize this object. + * @throws IOException If an I/O error occurred while writing. */ private void writeObject(final ObjectOutputStream out) throws IOException { final int size = size(); Modified: sis/branches/JDK8/core/sis-utility/src/main/java/org/apache/sis/util/iso/RecordDefinition.java URL: http://svn.apache.org/viewvc/sis/branches/JDK8/core/sis-utility/src/main/java/org/apache/sis/util/iso/RecordDefinition.java?rev=1656472&r1=1656471&r2=1656472&view=diff ============================================================================== --- sis/branches/JDK8/core/sis-utility/src/main/java/org/apache/sis/util/iso/RecordDefinition.java [UTF-8] (original) +++ sis/branches/JDK8/core/sis-utility/src/main/java/org/apache/sis/util/iso/RecordDefinition.java [UTF-8] Mon Feb 2 14:28:14 2015 @@ -83,6 +83,10 @@ abstract class RecordDefinition { // Int /** * Invoked on deserialization for restoring the transient fields. + * + * @param in The input stream from which to deserialize an attribute. + * @throws IOException If an I/O error occurred while reading or if the stream contains invalid data. + * @throws ClassNotFoundException If the class serialized on the stream is not on the classpath. */ private void readObject(final ObjectInputStream in) throws IOException, ClassNotFoundException { in.defaultReadObject(); Modified: sis/branches/JDK8/core/sis-utility/src/main/java/org/apache/sis/util/resources/ResourceInternationalString.java URL: http://svn.apache.org/viewvc/sis/branches/JDK8/core/sis-utility/src/main/java/org/apache/sis/util/resources/ResourceInternationalString.java?rev=1656472&r1=1656471&r2=1656472&view=diff ============================================================================== --- sis/branches/JDK8/core/sis-utility/src/main/java/org/apache/sis/util/resources/ResourceInternationalString.java [UTF-8] (original) +++ sis/branches/JDK8/core/sis-utility/src/main/java/org/apache/sis/util/resources/ResourceInternationalString.java [UTF-8] Mon Feb 2 14:28:14 2015 @@ -148,6 +148,9 @@ abstract class ResourceInternationalStri /** * Serializes this international string using the key name rather than numerical value. + * + * @param out The output stream where to serialize this object. + * @throws IOException If an I/O error occurred while writing. */ private void writeObject(final ObjectOutputStream out) throws IOException { out.defaultWriteObject(); @@ -156,6 +159,10 @@ abstract class ResourceInternationalStri /** * Deserializes an object serialized by {@link #writeObject(ObjectOutputStream)}. + * + * @param in The input stream from which to deserialize an object. + * @throws IOException If an I/O error occurred while reading or if the stream contains invalid data. + * @throws ClassNotFoundException If the class serialized on the stream is not on the classpath. */ private void readObject(final ObjectInputStream in) throws IOException, ClassNotFoundException { in.defaultReadObject();