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 * Interfaces used to model Java programming language types. 10 * 11 * <p> Unless otherwise specified in a particular implementation, the 12 * collections returned by methods in this package should be expected 13 * to be unmodifiable by the caller and unsafe for concurrent access. 14 * 15 * <p> Unless otherwise specified, methods in this package will throw 16 * a {@code NullPointerException} if given a {@code null} argument. 17 * 18 * @author Joseph D. Darcy 19 * @author Scott Seligman 20 * @author Peter von der Ahé 21 * @version 1.5 06/08/28 22 * @since 1.6 23 */ 24 package javax.lang.model.type; 25