aboutsummaryrefslogtreecommitdiff
path: root/java/src/main/java/com/google/protobuf/Internal.java
diff options
context:
space:
mode:
authorFeng Xiao <xfxyjwf@gmail.com>2015-08-27 13:59:43 -0700
committerFeng Xiao <xfxyjwf@gmail.com>2015-08-27 14:02:25 -0700
commit245224902a80d489389df192c0990ff70f2f3e4c (patch)
tree0a1bfe272d8acfb7f2d068a69ecdba80e8d6f627 /java/src/main/java/com/google/protobuf/Internal.java
parent23408684b4d2bf1b25e14314413a14d542c18bc4 (diff)
downloadprotobuf-245224902a80d489389df192c0990ff70f2f3e4c.tar.gz
protobuf-245224902a80d489389df192c0990ff70f2f3e4c.tar.bz2
protobuf-245224902a80d489389df192c0990ff70f2f3e4c.zip
Fix javadoc errors.
Diffstat (limited to 'java/src/main/java/com/google/protobuf/Internal.java')
-rw-r--r--java/src/main/java/com/google/protobuf/Internal.java29
1 files changed, 15 insertions, 14 deletions
diff --git a/java/src/main/java/com/google/protobuf/Internal.java b/java/src/main/java/com/google/protobuf/Internal.java
index fefda904..11901998 100644
--- a/java/src/main/java/com/google/protobuf/Internal.java
+++ b/java/src/main/java/com/google/protobuf/Internal.java
@@ -156,8 +156,8 @@ public class Internal {
* but currently (2011) still accepts 3-byte surrogate character
* byte sequences.
*
- * <p>See the Unicode Standard,</br>
- * Table 3-6. <em>UTF-8 Bit Distribution</em>,</br>
+ * <p>See the Unicode Standard,<br>
+ * Table 3-6. <em>UTF-8 Bit Distribution</em>,<br>
* Table 3-7. <em>Well Formed UTF-8 Byte Sequences</em>.
*
* <p>As of 2011-02, this method simply returns the result of {@link
@@ -387,7 +387,7 @@ public class Internal {
/**
- * Provides an immutable view of List<T> around a List<F>.
+ * Provides an immutable view of {@code List<T>} around a {@code List<F>}.
*
* Protobuf internal. Used in protobuf generated code only.
*/
@@ -419,7 +419,8 @@ public class Internal {
}
/**
- * Wrap around a Map<K, RealValue> and provide a Map<K, V> interface.
+ * Wrap around a {@code Map<K, RealValue>} and provide a {@code Map<K, V>}
+ * interface.
*/
public static class MapAdapter<K, V, RealValue> extends AbstractMap<K, V> {
/**
@@ -576,12 +577,12 @@ public class Internal {
int getInt(int index);
/**
- * Like {@link #add(Integer)} but more efficient in that it doesn't box the element.
+ * Like {@link #add(Object)} but more efficient in that it doesn't box the element.
*/
void addInt(int element);
/**
- * Like {@link #set(int, Integer)} but more efficient in that it doesn't box the element.
+ * Like {@link #set(int, Object)} but more efficient in that it doesn't box the element.
*/
int setInt(int index, int element);
}
@@ -598,12 +599,12 @@ public class Internal {
boolean getBoolean(int index);
/**
- * Like {@link #add(Boolean)} but more efficient in that it doesn't box the element.
+ * Like {@link #add(Object)} but more efficient in that it doesn't box the element.
*/
void addBoolean(boolean element);
/**
- * Like {@link #set(int, Boolean)} but more efficient in that it doesn't box the element.
+ * Like {@link #set(int, Object)} but more efficient in that it doesn't box the element.
*/
boolean setBoolean(int index, boolean element);
}
@@ -620,12 +621,12 @@ public class Internal {
long getLong(int index);
/**
- * Like {@link #add(Long)} but more efficient in that it doesn't box the element.
+ * Like {@link #add(Object)} but more efficient in that it doesn't box the element.
*/
void addLong(long element);
/**
- * Like {@link #set(int, Long)} but more efficient in that it doesn't box the element.
+ * Like {@link #set(int, Object)} but more efficient in that it doesn't box the element.
*/
long setLong(int index, long element);
}
@@ -642,12 +643,12 @@ public class Internal {
double getDouble(int index);
/**
- * Like {@link #add(Double)} but more efficient in that it doesn't box the element.
+ * Like {@link #add(Object)} but more efficient in that it doesn't box the element.
*/
void addDouble(double element);
/**
- * Like {@link #set(int, Double)} but more efficient in that it doesn't box the element.
+ * Like {@link #set(int, Object)} but more efficient in that it doesn't box the element.
*/
double setDouble(int index, double element);
}
@@ -664,12 +665,12 @@ public class Internal {
float getFloat(int index);
/**
- * Like {@link #add(Float)} but more efficient in that it doesn't box the element.
+ * Like {@link #add(Object)} but more efficient in that it doesn't box the element.
*/
void addFloat(float element);
/**
- * Like {@link #set(int, Float)} but more efficient in that it doesn't box the element.
+ * Like {@link #set(int, Object)} but more efficient in that it doesn't box the element.
*/
float setFloat(int index, float element);
}