summaryrefslogtreecommitdiffstats
path: root/sched/src/com
diff options
context:
space:
mode:
authorJean-Philippe Lesot <jplesot@google.com>2015-03-20 09:30:38 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2015-03-20 09:30:39 +0000
commit9f7aaba834167a3c6636e9a2403bfc9df65b49aa (patch)
tree5d29690fa12742d23efcb955e46ec0cf2bd6fb12 /sched/src/com
parentb393d2def32ea5b14534688eb25b224c11e8922b (diff)
parent350e4ffb48a95a2afd11033accb8f4959a52cdc6 (diff)
downloadtoolchain_jack-9f7aaba834167a3c6636e9a2403bfc9df65b49aa.tar.gz
toolchain_jack-9f7aaba834167a3c6636e9a2403bfc9df65b49aa.tar.bz2
toolchain_jack-9f7aaba834167a3c6636e9a2403bfc9df65b49aa.zip
Merge "Fix some javadoc in VariableName" into ub-jack
Diffstat (limited to 'sched/src/com')
-rw-r--r--sched/src/com/android/sched/util/codec/VariableName.java7
1 files changed, 5 insertions, 2 deletions
diff --git a/sched/src/com/android/sched/util/codec/VariableName.java b/sched/src/com/android/sched/util/codec/VariableName.java
index 10813044..040e29a9 100644
--- a/sched/src/com/android/sched/util/codec/VariableName.java
+++ b/sched/src/com/android/sched/util/codec/VariableName.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 The Android Open Source Project
+ * Copyright (C) 2015 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -16,13 +16,16 @@
package com.android.sched.util.codec;
+import com.android.sched.util.config.id.EnumPropertyId;
+
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
- * XXX
+ * Specify variable name on {@code enum} for {@link EnumCodec} or {@link EnumPropertyId} and on
+ * {@code interface} implemented by {@link ImplementationName}.
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)