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.
44 lines
867 B
44 lines
867 B
/*
|
|
* Copyright (c) 2005, 2006, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
/**
|
|
* Utilities to assist in the processing of
|
|
* {@linkplain javax.lang.model.element program elements} and
|
|
* {@linkplain javax.lang.model.type types}.
|
|
*
|
|
* <p> Unless otherwise specified in a particular implementation, the
|
|
* collections returned by methods in this package should be expected
|
|
* to be unmodifiable by the caller and unsafe for concurrent access.
|
|
*
|
|
* <p> Unless otherwise specified, methods in this package will throw
|
|
* a {@code NullPointerException} if given a {@code null} argument.
|
|
*
|
|
* @author Joseph D. Darcy
|
|
* @author Scott Seligman
|
|
* @author Peter von der Ahé
|
|
* @since 1.6
|
|
*/
|
|
package javax.lang.model.util;
|