src/share/classes/javax/annotation/processing/SupportedSourceVersion.java

changeset 1725
e8987ce7fb4b
parent 554
9d9f26857129
child 2525
2eb010b6cb22
equal deleted inserted replaced
1724:d918b63a5509 1725:e8987ce7fb4b
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
45 */ 45 */
46 @Documented 46 @Documented
47 @Target(TYPE) 47 @Target(TYPE)
48 @Retention(RUNTIME) 48 @Retention(RUNTIME)
49 public @interface SupportedSourceVersion { 49 public @interface SupportedSourceVersion {
50 /**
51 * Returns the latest supported source version.
52 * @return the latest supported source version
53 */
50 SourceVersion value(); 54 SourceVersion value();
51 } 55 }

mercurial