Searched defs:Gen (Results 1 - 5 of 5) sorted by relevance

/openjdk7/langtools/test/tools/javac/processing/model/element/
H A DTypeParamBounds.java54 TypeElement gen = elements.getTypeElement("TypeParamBounds.Gen");
56 // For each type parameter of Gen, compare its bounds with the
62 String[] expected = Gen.boundNames.get(tparam + "");
79 static class Gen<T, U extends Object, V extends Number, W extends U, class in class:TypeParamBounds
83 // The names of the bounds of each type parameter of Gen.
/openjdk7/jdk/make/tools/src/build/tools/javazic/
H A DGen.java44 * <code>Gen</code> is one of back-end classes of javazic, and generates
47 class Gen extends BackEnd { class in inherits:BackEnd
/openjdk7/jdk/test/javax/management/mxbean/
H A DGenericTypeTest.java39 public static class Gen<T> { class in class:GenericTypeTest
48 public <T> Gen<T> getFoo();
52 public Gen<String> getFoo();
56 public <T> Gen<T> getWhatever() {
77 // public static class ConcreteNoOverride extends Gen<String> {}
83 public static class ConcreteOverride extends Gen<String> {
/openjdk7/langtools/src/share/classes/com/sun/tools/javah/
H A DGen.java70 public abstract class Gen { class
79 protected Gen(Util util) { method in class:Gen
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DGen.java58 public class Gen extends JCTree.Visitor { class in inherits:JCTree.Visitor
59 protected static final Context.Key<Gen> genKey =
60 new Context.Key<Gen>();
88 public static Gen instance(Context context) {
89 Gen instance = context.get(genKey);
91 instance = new Gen(context);
95 protected Gen(Context context) { method in class:Gen

Completed in 45 milliseconds