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

/external/dexmaker/src/main/java/com/google/dexmaker/
H A DMethodId.java31 public final class MethodId<D, R> { class
41 MethodId(TypeId<D> declaringType, TypeId<R> returnType, String name, TypeList parameters) { method in class:MethodId
101 return o instanceof MethodId
102 && ((MethodId<?, ?>) o).declaringType.equals(declaringType)
103 && ((MethodId<?, ?>) o).name.equals(name)
104 && ((MethodId<?, ?>) o).parameters.equals(parameters)
105 && ((MethodId<?, ?>) o).returnType.equals(returnType);

Completed in 204 milliseconds