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