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