diff options
author | Xavier Ducrohet <xav@android.com> | 2012-10-02 17:37:28 -0700 |
---|---|---|
committer | Xavier Ducrohet <xav@android.com> | 2012-10-02 17:37:28 -0700 |
commit | bdb9903224d688b264b6a9b4c7aa3fa8e0142996 (patch) | |
tree | 6f80d17a615c1798bda4b4925f1bc42e88d568f4 /ddms/libs/ddmlib | |
parent | d19ce5efa561089937102f19a373ac5324311a03 (diff) | |
download | sdk-bdb9903224d688b264b6a9b4c7aa3fa8e0142996.zip sdk-bdb9903224d688b264b6a9b4c7aa3fa8e0142996.tar.gz sdk-bdb9903224d688b264b6a9b4c7aa3fa8e0142996.tar.bz2 |
Fix javadoc here and there.
Change-Id: If02d0b97c294d9821a1c914547782a08b1d256fb
Diffstat (limited to 'ddms/libs/ddmlib')
4 files changed, 5 insertions, 10 deletions
diff --git a/ddms/libs/ddmlib/src/com/android/ddmlib/IDevice.java b/ddms/libs/ddmlib/src/com/android/ddmlib/IDevice.java index d81aea9..452d032 100644 --- a/ddms/libs/ddmlib/src/com/android/ddmlib/IDevice.java +++ b/ddms/libs/ddmlib/src/com/android/ddmlib/IDevice.java @@ -351,7 +351,6 @@ public interface IDevice { * * @param localPort the local port to forward * @param remotePort the remote port. - * @return <code>true</code> if success. * @throws TimeoutException in case of timeout on the connection. * @throws AdbCommandRejectedException if adb rejects the command * @throws IOException in case of I/O error on the connection. @@ -365,7 +364,6 @@ public interface IDevice { * @param localPort the local port to forward * @param remoteSocketName name of the unix domain socket created on the device * @param namespace namespace in which the unix domain socket was created - * @return <code>true</code> if success. * @throws TimeoutException in case of timeout on the connection. * @throws AdbCommandRejectedException if adb rejects the command * @throws IOException in case of I/O error on the connection. @@ -379,7 +377,6 @@ public interface IDevice { * * @param localPort the local port to forward * @param remotePort the remote port. - * @return <code>true</code> if success. * @throws TimeoutException in case of timeout on the connection. * @throws AdbCommandRejectedException if adb rejects the command * @throws IOException in case of I/O error on the connection. @@ -393,7 +390,6 @@ public interface IDevice { * @param localPort the local port to forward * @param remoteSocketName the remote unix domain socket name. * @param namespace namespace in which the unix domain socket was created - * @return <code>true</code> if success. * @throws TimeoutException in case of timeout on the connection. * @throws AdbCommandRejectedException if adb rejects the command * @throws IOException in case of I/O error on the connection. diff --git a/ddms/libs/ddmlib/src/com/android/ddmlib/NativeAllocationInfo.java b/ddms/libs/ddmlib/src/com/android/ddmlib/NativeAllocationInfo.java index 385ce0d..9b104ba 100644 --- a/ddms/libs/ddmlib/src/com/android/ddmlib/NativeAllocationInfo.java +++ b/ddms/libs/ddmlib/src/com/android/ddmlib/NativeAllocationInfo.java @@ -18,7 +18,6 @@ package com.android.ddmlib; import java.util.ArrayList; import java.util.Arrays; -import java.util.Iterator; import java.util.List; import java.util.regex.Matcher; import java.util.regex.Pattern; @@ -146,7 +145,7 @@ public final class NativeAllocationInfo { * Returns the resolved stack call. * @return An array of {@link NativeStackCallInfo} or <code>null</code> if the stack call * was not resolved. - * @see #setResolvedStackCall(ArrayList) + * @see #setResolvedStackCall(List) * @see #isStackCallResolved() */ public synchronized List<NativeStackCallInfo> getResolvedStackCall() { @@ -263,7 +262,7 @@ public final class NativeAllocationInfo { * lower level of the libc, but the actual method that performed the allocation. * @return a <code>NativeStackCallInfo</code> or <code>null</code> if the stack call has not * been processed from the raw addresses. - * @see #setResolvedStackCall(ArrayList) + * @see #setResolvedStackCall(List) * @see #isStackCallResolved() */ public synchronized NativeStackCallInfo getRelevantStackCallInfo() { diff --git a/ddms/libs/ddmlib/src/com/android/ddmlib/testrunner/IRemoteAndroidTestRunner.java b/ddms/libs/ddmlib/src/com/android/ddmlib/testrunner/IRemoteAndroidTestRunner.java index 7606d69..7d3d6bf 100644 --- a/ddms/libs/ddmlib/src/com/android/ddmlib/testrunner/IRemoteAndroidTestRunner.java +++ b/ddms/libs/ddmlib/src/com/android/ddmlib/testrunner/IRemoteAndroidTestRunner.java @@ -16,8 +16,8 @@ package com.android.ddmlib.testrunner; -import com.android.ddmlib.IDevice; import com.android.ddmlib.AdbCommandRejectedException; +import com.android.ddmlib.IDevice; import com.android.ddmlib.ShellCommandUnresponsiveException; import com.android.ddmlib.TimeoutException; @@ -181,7 +181,7 @@ public interface IRemoteAndroidTestRunner { * <p/> * By default no timeout will be specified. * - * @see {@link IDevice#executeShellCommand(String, com.android.ddmlib.IShellOutputReceiver, int)} + * @see IDevice#executeShellCommand(String, com.android.ddmlib.IShellOutputReceiver, int) */ public void setMaxtimeToOutputResponse(int maxTimeToOutputResponse); diff --git a/ddms/libs/ddmlib/src/com/android/ddmlib/testrunner/ITestRunListener.java b/ddms/libs/ddmlib/src/com/android/ddmlib/testrunner/ITestRunListener.java index a8b117d..7e20c9f 100644 --- a/ddms/libs/ddmlib/src/com/android/ddmlib/testrunner/ITestRunListener.java +++ b/ddms/libs/ddmlib/src/com/android/ddmlib/testrunner/ITestRunListener.java @@ -21,7 +21,7 @@ import java.util.Map; /** * Receives event notifications during instrumentation test runs. * <p/> - * Patterned after {@link junit.runner.TestRunListener}. + * Patterned after junit.runner.TestRunListener. * <p/> * The sequence of calls will be: * <ul> |