blob: 67a355fac482b180e153fa6dc1e0d743f200f993 [file] [log] [blame]
package org.eclipse.jpt.common.core.tests.internal.resource.java;
import org.eclipse.jdt.core.IAnnotation;
import org.eclipse.jpt.common.core.internal.resource.java.binary.BinaryAnnotation;
import org.eclipse.jpt.common.core.resource.java.JavaResourceAnnotatedElement;
public class BinaryDeprecatedAnnotation
extends BinaryAnnotation {
public BinaryDeprecatedAnnotation(JavaResourceAnnotatedElement parent, IAnnotation jdtAnnotation) {
super(parent, jdtAnnotation);
}
public String getAnnotationName() {
return Deprecated.class.getName();
}
}