< prev index next >

src/jdk.xml.bind/share/classes/com/sun/codemodel/internal/JAnnotatable.java

Print this page

        

@@ -1,7 +1,7 @@
 /*
- * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
  * under the terms of the GNU General Public License version 2 only, as
  * published by the Free Software Foundation.  Oracle designates this

@@ -48,10 +48,18 @@
      *          The annotation class to annotate the program element with
      */
     JAnnotationUse annotate(Class <? extends Annotation> clazz);
 
     /**
+     * Removes annotation from this program element.
+     *
+     * @param annotation
+     *          The annotation to be removed from the program element
+     */
+    boolean removeAnnotation(JAnnotationUse annotation);
+
+    /**
      * Adds an annotation to this program element
      * and returns a type-safe writer to fill in the values of such annotations.
      */
     <W extends JAnnotationWriter> W annotate2(Class<W> clazz);
 
< prev index next >