1 /* 2 * @(#)package-info.java 1.5 06/08/28 3 * 4 * Copyright 2006 Sun Microsystems, Inc. All rights reserved. 5 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 */ 7 8 /** 9 * Utilities to assist in the processing of 10 * {@linkplain javax.lang.model.element program elements} and 11 * {@linkplain javax.lang.model.type types}. 12 * 13 * <p> Unless otherwise specified in a particular implementation, the 14 * collections returned by methods in this package should be expected 15 * to be unmodifiable by the caller and unsafe for concurrent access. 16 * 17 * <p> Unless otherwise specified, methods in this package will throw 18 * a {@code NullPointerException} if given a {@code null} argument. 19 * 20 * @author Joseph D. Darcy 21 * @author Scott Seligman 22 * @author Peter von der Ahé 23 * @version 1.5 06/08/28 24 * @since 1.6 25 */ 26 package javax.lang.model.util; 27