aboutsummaryrefslogtreecommitdiffstats
path: root/common/src/com/android/resources/ScreenOrientation.java
diff options
context:
space:
mode:
Diffstat (limited to 'common/src/com/android/resources/ScreenOrientation.java')
-rw-r--r--common/src/com/android/resources/ScreenOrientation.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/common/src/com/android/resources/ScreenOrientation.java b/common/src/com/android/resources/ScreenOrientation.java
index 56f907b..b18753d 100644
--- a/common/src/com/android/resources/ScreenOrientation.java
+++ b/common/src/com/android/resources/ScreenOrientation.java
@@ -50,14 +50,17 @@ public enum ScreenOrientation implements ResourceEnum {
return null;
}
+ @Override
public String getResourceValue() {
return mValue;
}
+ @Override
public String getShortDisplayValue() {
return mShortDisplayValue;
}
+ @Override
public String getLongDisplayValue() {
return mLongDisplayValue;
}
@@ -87,10 +90,12 @@ public enum ScreenOrientation implements ResourceEnum {
return null;
}
+ @Override
public boolean isFakeValue() {
return false;
}
+ @Override
public boolean isValidValueForDevice() {
return true;
}