1 package spoon.reflect.visitor; 2 3 import java.lang.annotation.ElementType; 4 import java.lang.annotation.Target; 5 6 /** 7 * This annotation defines a method that returns the parent of an element of the 8 * meta model. It is used for the automatic generation of visitors of spoon 9 * metamodel elements. 10 * 11 */ 12 @Target({ElementType.METHOD}) 13 public @interface Parent {} 14