diff options
| author | 2022-12-02 20:03:01 +0000 | |
|---|---|---|
| committer | 2022-12-02 20:03:01 +0000 | |
| commit | 8504c79dc36908e180add7ce5e2447deb72a7e6e (patch) | |
| tree | bc6649739dc3f188460427cb41ee7dbbf9b879e4 | |
| parent | 5a2fdecfe9a30f030c56547f5900b74951bb5b9a (diff) | |
| parent | 4bf9ebdde2f903723356ed4cd5b798bd1febbcfe (diff) | |
Merge "Fixing comments on AvailableNfcAntenna" am: b55d142b23 am: 4bf9ebdde2
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/2321793
Change-Id: Icd1f848094f8a1185ea730bd8b89adc1ddc3590e
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
| -rw-r--r-- | core/java/android/nfc/AvailableNfcAntenna.java | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/core/java/android/nfc/AvailableNfcAntenna.java b/core/java/android/nfc/AvailableNfcAntenna.java index 946ba67b2397..6e6512a04971 100644 --- a/core/java/android/nfc/AvailableNfcAntenna.java +++ b/core/java/android/nfc/AvailableNfcAntenna.java @@ -27,13 +27,15 @@ import android.os.Parcelable; */ public final class AvailableNfcAntenna implements Parcelable { /** - * Location on the antenna on the Y axis in millimeters. - * 0 is the bottom-left when the user is facing the screen. + * Location of the antenna on the Y axis in millimeters. + * 0 is the bottom-left when the user is facing the screen + * and the device orientation is Portrait. */ private final int mLocationX; /** - * Location on the antenna on the Y axis in millimeters. - * 0 is the bottom-left when the user is facing the screen. + * Location of the antenna on the Y axis in millimeters. + * 0 is the bottom-left when the user is facing the screen + * and the device orientation is Portrait. */ private final int mLocationY; @@ -43,16 +45,18 @@ public final class AvailableNfcAntenna implements Parcelable { } /** - * Location on the antenna on the X axis in millimeters. - * 0 is the bottom-left when the user is facing the screen. + * Location of the antenna on the X axis in millimeters. + * 0 is the bottom-left when the user is facing the screen + * and the device orientation is Portrait. */ public int getLocationX() { return mLocationX; } /** - * Location on the antenna on the Y axis in millimeters. - * 0 is the bottom-left when the user is facing the screen. + * Location of the antenna on the Y axis in millimeters. + * 0 is the bottom-left when the user is facing the screen + * and the device orientation is Portrait. */ public int getLocationY() { return mLocationY; |