001/* 002 * To change this template, choose Tools | Templates 003 * and open the template in the editor. 004 */ 005package org.anarres.lzo; 006 007import static java.lang.annotation.ElementType.*; 008import java.lang.annotation.Retention; 009import java.lang.annotation.RetentionPolicy; 010import java.lang.annotation.Target; 011 012/** 013 * 014 * @author shevek 015 */ 016@Target({TYPE, FIELD, METHOD, PARAMETER, CONSTRUCTOR, LOCAL_VARIABLE}) 017@Retention(RetentionPolicy.CLASS) 018public @interface SuppressWarnings { 019 020 public String[] value(); 021}