OSDN Git Service

Fix the SDK build.
authorXavier Ducrohet <xav@android.com>
Wed, 3 Feb 2010 01:31:34 +0000 (17:31 -0800)
committerXavier Ducrohet <xav@android.com>
Wed, 3 Feb 2010 01:31:34 +0000 (17:31 -0800)
Proper link format is <package>.className#methodName(). Not
sure why this worked before.

Change-Id: I23f7f73b735dde47aa2fdc5a0198a16e379ad741

core/java/android/storage/StorageEventListener.java

index 94d47ca..cd71090 100644 (file)
@@ -50,8 +50,8 @@ public interface StorageEventListener {
      * Called when a volume has changed state
      * @param label the system defined label for the volume.
      * @param path the filesystem path for the volume.
-     * @param oldState the old state as returned by {@link android.os.Environment.getExternalStorageState()}.
-     * @param newState the old state as returned by {@link android.os.Environment.getExternalStorageState()}.
+     * @param oldState the old state as returned by {@link android.os.Environment#getExternalStorageState()}.
+     * @param newState the old state as returned by {@link android.os.Environment#getExternalStorageState()}.
      */
     public void onVolumeStateChanged(String label, String path, String oldState, String newState);
 }