You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
757 B
48 lines
757 B
6 years ago
|
/*
|
||
|
* Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved.
|
||
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
||
|
*
|
||
|
*
|
||
|
*
|
||
|
*
|
||
|
*
|
||
|
*
|
||
|
*
|
||
|
*
|
||
|
*
|
||
|
*
|
||
|
*
|
||
|
*
|
||
|
*
|
||
|
*
|
||
|
*
|
||
|
*
|
||
|
*
|
||
|
*
|
||
|
*
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
package com.sun.javadoc;
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Java Programming Language version. The constants of this enum
|
||
|
* identify the JDK and J2SE releases containing language changes
|
||
|
* relevant to doclets.
|
||
|
* <p>
|
||
|
* All doclets support at least the 1.1 language version.
|
||
|
* The first release subsequent to this with language changes
|
||
|
* affecting doclets is 1.5.
|
||
|
*
|
||
|
* @since 1.5
|
||
|
*/
|
||
|
public enum LanguageVersion {
|
||
|
|
||
|
/** 1.1 added nested classes and interfaces. */
|
||
|
JAVA_1_1,
|
||
|
|
||
|
/** 1.5 added generic types, annotations, enums, and varArgs. */
|
||
|
JAVA_1_5
|
||
|
}
|