Searched refs:rawSig (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/reflect/generics/repository/
H A DMethodRepository.java45 private MethodRepository(String rawSig, GenericsFactory f) { argument
46 super(rawSig, f);
51 * @param rawSig - the generic signature of the reflective object
56 * information represented in the signature <tt>rawSig</tt>
58 public static MethodRepository make(String rawSig, GenericsFactory f) { argument
59 return new MethodRepository(rawSig, f);
H A DFieldRepository.java47 protected FieldRepository(String rawSig, GenericsFactory f) { argument
48 super(rawSig, f);
57 * @param rawSig - the generic signature of the reflective object
62 * information represented in the signature <tt>rawSig</tt>
64 public static FieldRepository make(String rawSig, argument
66 return new FieldRepository(rawSig, f);
H A DAbstractRepository.java68 * @param rawSig - the generic signature of the reflective object
73 protected AbstractRepository(String rawSig, GenericsFactory f) { argument
74 tree = parse(rawSig);
H A DClassRepository.java47 private ClassRepository(String rawSig, GenericsFactory f) { argument
48 super(rawSig, f);
57 * @param rawSig - the generic signature of the reflective object
62 * information represented in the signature <tt>rawSig</tt>
64 public static ClassRepository make(String rawSig, GenericsFactory f) { argument
65 return new ClassRepository(rawSig, f);
H A DGenericDeclRepository.java47 protected GenericDeclRepository(String rawSig, GenericsFactory f) { argument
48 super(rawSig, f);
H A DConstructorRepository.java50 protected ConstructorRepository(String rawSig, GenericsFactory f) { argument
51 super(rawSig, f);
60 * @param rawSig - the generic signature of the reflective object
65 * information represented in the signature <tt>rawSig</tt>
67 public static ConstructorRepository make(String rawSig, argument
69 return new ConstructorRepository(rawSig, f);

Completed in 52 milliseconds