aboutsummaryrefslogtreecommitdiffstats
path: root/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/resources/platform/AttributeInfo.java
diff options
context:
space:
mode:
Diffstat (limited to 'eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/resources/platform/AttributeInfo.java')
-rwxr-xr-xeclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/resources/platform/AttributeInfo.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/resources/platform/AttributeInfo.java b/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/resources/platform/AttributeInfo.java
index 7b3e8a3..05f0adf 100755
--- a/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/resources/platform/AttributeInfo.java
+++ b/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/resources/platform/AttributeInfo.java
@@ -86,13 +86,13 @@ public class AttributeInfo implements IAttributeInfo {
/** Returns the XML Name of the attribute */
@Override
- public String getName() {
+ public @NonNull String getName() {
return mName;
}
/** Returns the formats of the attribute. Cannot be null.
* Should have at least one format. */
@Override
- public EnumSet<Format> getFormats() {
+ public @NonNull EnumSet<Format> getFormats() {
return mFormats;
}
/** Returns the values for enums. null for other types. */
@@ -107,7 +107,7 @@ public class AttributeInfo implements IAttributeInfo {
}
/** Returns a short javadoc, .i.e. the first sentence. */
@Override
- public String getJavaDoc() {
+ public @NonNull String getJavaDoc() {
return mJavaDoc;
}
/** Returns the documentation for deprecated attributes. Null if not deprecated. */
@@ -157,7 +157,7 @@ public class AttributeInfo implements IAttributeInfo {
* this attribute
*/
@Override
- public String getDefinedBy() {
+ public @NonNull String getDefinedBy() {
return mDefinedBy;
}
}