Searched defs:MethodType (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DMethodType.java39 class MethodType extends Type { class in inherits:Type
55 MethodType(String typeSig, Type returnType, Type argTypes[]) { method in class:MethodType
73 MethodType m = (MethodType)t;
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DFormSubmitEvent.java48 public enum MethodType { GET, POST }; enum in class:FormSubmitEvent
64 MethodType method, String data) {
77 public MethodType getMethod() {
90 private MethodType method;
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/util/
H A DMethodType.java21 * $Id: MethodType.java,v 1.2.4.1 2005/09/05 11:18:05 pvedula Exp $
32 public final class MethodType extends Type { class in inherits:Type
36 public MethodType(Type resultType) { method in class:MethodType
41 public MethodType(Type resultType, Type arg1) { method in class:MethodType
52 public MethodType(Type resultType, Type arg1, Type arg2) { method in class:MethodType
59 public MethodType(Type resultType, Type arg1, Type arg2, Type arg3) { method in class:MethodType
67 public MethodType(Type resultType, Vector argsType) { method in class:MethodType
118 if (other instanceof MethodType) {
119 final MethodType temp = (MethodType) othe
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DType.java70 R visitMethodType(MethodType type, P p);
151 public static class MethodType extends Type { class in class:Type
152 public MethodType(List<? extends Type> paramTypes, Type resultType) { method in class:Type.MethodType
156 public MethodType(List<? extends TypeParamType> typeParamTypes, method in class:Type.MethodType
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DMethodType.java53 * All instances of {@code MethodType} are immutable.
68 * {@code MethodType} objects are sometimes derived from bytecode instructions
79 * When the JVM materializes a {@code MethodType} from a descriptor string,
82 * This loading may occur at any time before the {@code MethodType} object is first derived.
86 class MethodType implements java.io.Serializable { class in inherits:java.io.Serializable
95 private MethodType wrapAlt; // alternative wrapped/unwrapped version
101 private MethodType(Class<?> rtype, Class<?>[] ptypes) { method in class:MethodType
187 MethodType methodType(Class<?> rtype, Class<?>[] ptypes) {
199 MethodType methodType(Class<?> rtype, List<Class<?>> ptypes) {
219 MethodType methodTyp
977 private MethodType() { method in class:MethodType
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DType.java53 * method types (tag: METHOD, class: MethodType),
399 public MethodType asMethodType() { throw new AssertionError(); }
862 public static class MethodType extends Type implements ExecutableType { class in class:Type
868 public MethodType(List<Type> argtypes, method in class:Type.MethodType
895 if (!(obj instanceof MethodType))
897 MethodType m = (MethodType)obj;
937 else return new MethodType(argtypes1, restype1, thrown1, tsym);
944 public MethodType asMethodType() { return this; }
1193 public MethodType asMethodTyp
[all...]

Completed in 55 milliseconds