001package regexodus; 002 003import java.lang.annotation.ElementType; 004import java.lang.annotation.Retention; 005import java.lang.annotation.RetentionPolicy; 006import java.lang.annotation.Target; 007 008/** 009 * An annotation for the GWT compiler. 010 * 011 * @author smelC from the SquidLib project 012 */ 013@Retention(RetentionPolicy.CLASS) 014@Target({ElementType.TYPE, ElementType.METHOD, ElementType.CONSTRUCTOR, ElementType.FIELD}) 015public @interface GwtIncompatible { 016 017}