Annotation Type MethodDescriptor


Represents a method descriptor (JVM representation of method signature) as defined in the Java Virtual Machine Specification, section 4.3.3.

Example:

 package edu.cs.washington;
 public class BinaryName {
   private class Inner {
     public void method(Object obj, int i) {}
   }
 }
In this example method descriptor for method 'method': (Ljava/lang/Object;I)Z