Home | History | Annotate | Download | only in tree
      1 package org.objectweb.asm.tree;
      2 
      3 import org.objectweb.asm.TypePath;
      4 
      5 public class TypeAnnotationNode extends AnnotationNode {
      6     public TypeAnnotationNode(final int typeRef,
      7             final TypePath typePath, final String desc) {
      8         super(desc);
      9     }
     10 }
     11