Searched defs:containing (Results 1 - 4 of 4) sorted by relevance
/openjdk7/langtools/src/share/classes/com/sun/mirror/util/ |
H A D | Types.java | 162 * {@linkplain DeclaredType#getContainingType() containing type} 170 * <p> If the containing type is a parameterized type, 176 * @param containing the containing type, or <tt>null</tt> if none 184 * argument, declaration, or containing type is provided 186 DeclaredType getDeclaredType(DeclaredType containing, argument
|
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/util/ |
H A D | TypesImpl.java | 194 public DeclaredType getDeclaredType(DeclaredType containing, argument 197 if (containing == null) 201 Type outer = ((TypeMirrorImpl) containing).type; 204 throw new IllegalArgumentException(containing.toString());
|
/openjdk7/langtools/src/share/classes/javax/lang/model/util/ |
H A D | Types.java | 260 * {@linkplain DeclaredType#getEnclosingType() containing type} 268 * <p> If the containing type is a parameterized type, 274 * @param containing the containing type, or {@code null} if none 281 * argument, type element, or containing type is provided 283 DeclaredType getDeclaredType(DeclaredType containing, argument 294 * @param containing the containing type 296 * @return the type of the element as viewed from the containing type 300 TypeMirror asMemberOf(DeclaredType containing, Elemen argument [all...] |
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/model/ |
H A D | JavacTypes.java | 267 * @param containing the containing type 269 * @return the type of the element as viewed from the containing type 273 public TypeMirror asMemberOf(DeclaredType containing, Element element) { argument 274 Type site = (Type)containing;
|
Completed in 51 milliseconds