Merge "Fixing comments on AvailableNfcAntenna" am: b55d142b23

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/2321793

Change-Id: Idb846337a57dd484441f4cf5f3672ed079d6365e
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Omer Ozer
2022-12-02 19:31:40 +00:00
committed by Automerger Merge Worker

View File

@@ -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;