001package react4j.dom.proptypes.html.attributeTypes; 002 003import java.lang.annotation.Documented; 004import javax.annotation.Nonnull; 005import org.intellij.lang.annotations.MagicConstant; 006 007@Documented 008@MagicConstant( valuesFromClass = Target.class ) 009public @interface Target 010{ 011 @Nonnull 012 String blank = "_blank"; 013 @Nonnull 014 String self = "_self"; 015 @Nonnull 016 String parent = "_parent"; 017 @Nonnull 018 String top = "_top"; 019}