Added comments for ConfigurationKind enum constants.

This commit is contained in:
Evgeny Gerashchenko
2012-07-09 16:36:58 +04:00
parent f43b617fd8
commit 5414240fa6
@@ -17,7 +17,7 @@
package org.jetbrains.jet;
public enum ConfigurationKind {
JDK_ONLY,
JDK_AND_ANNOTATIONS,
ALL,
JDK_ONLY, // Java runtime classes
JDK_AND_ANNOTATIONS, // Java runtime classes with Kotlin's external annotations
ALL, // Java runtime classes with Kotlin's external annotations and Kotlin stdlib
}