summaryrefslogtreecommitdiffstats
path: root/sched
diff options
context:
space:
mode:
authorJean-Philippe Lesot <jplesot@google.com>2015-03-16 23:01:45 +0100
committerJean-Philippe Lesot <jplesot@google.com>2015-03-16 23:01:45 +0100
commit350e4ffb48a95a2afd11033accb8f4959a52cdc6 (patch)
tree562316b3c058f822e58980ed3d5a260539496bc3 /sched
parent1e5b39e54602d3eada5c51230bbc11a75d4495e0 (diff)
downloadtoolchain_jack-350e4ffb48a95a2afd11033accb8f4959a52cdc6.zip
toolchain_jack-350e4ffb48a95a2afd11033accb8f4959a52cdc6.tar.gz
toolchain_jack-350e4ffb48a95a2afd11033accb8f4959a52cdc6.tar.bz2
Fix some javadoc in VariableName
Change-Id: I2d232af8d7afefd14423799edfbc4efa85da018d
Diffstat (limited to 'sched')
-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 1081304..040e29a 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)