< prev index next > src/jdk.compiler/share/classes/com/sun/tools/javac/util/Names.java
Print this page
// pattern switches
public final Name typeSwitch;
public final Name enumSwitch;
public final Name enumConstant;
+ // code reflection
+ public final Name jdk_incubator_code;
+ public final Name quoted;
+ public final Name quotable;
+
// special annotation names
public final Name requiresIdentityInternal;
public final Name.Table table;
// pattern switches
typeSwitch = fromString("typeSwitch");
enumSwitch = fromString("enumSwitch");
enumConstant = fromString("enumConstant");
+ // code reflection
+ jdk_incubator_code = fromString("jdk.incubator.code");
+ quoted = fromString("Quoted");
+ quotable = fromString("Quotable");
+
// special annotations:
requiresIdentityInternal = fromString("jdk.internal.RequiresIdentity+Annotation");
}
protected Name.Table createTable(Options options) {
< prev index next >