langtools/src/share/classes/javax/annotation/processing/SupportedOptions.java
changeset 17548 b0a4fd89079c
parent 5520 86e4b9a9da40
equal deleted inserted replaced
17547:40f2f9a5a445 17548:b0a4fd89079c
     1 /*
     1 /*
     2  * Copyright (c) 2005, 2006, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
    44  */
    44  */
    45 @Documented
    45 @Documented
    46 @Target(TYPE)
    46 @Target(TYPE)
    47 @Retention(RUNTIME)
    47 @Retention(RUNTIME)
    48 public @interface SupportedOptions {
    48 public @interface SupportedOptions {
    49   String [] value();
    49     /**
       
    50      * Returns the supported options.
       
    51      * @return the supported options
       
    52      */
       
    53     String [] value();
    50 }
    54 }