src/share/classes/javax/lang/model/type/MirroredTypesException.java

changeset 1
9a66ca7c79fa
child 193
18c433be7aa7
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/share/classes/javax/lang/model/type/MirroredTypesException.java	Sat Dec 01 00:00:00 2007 +0000
     1.3 @@ -0,0 +1,75 @@
     1.4 +/*
     1.5 + * Copyright 2005-2006 Sun Microsystems, Inc.  All Rights Reserved.
     1.6 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.7 + *
     1.8 + * This code is free software; you can redistribute it and/or modify it
     1.9 + * under the terms of the GNU General Public License version 2 only, as
    1.10 + * published by the Free Software Foundation.  Sun designates this
    1.11 + * particular file as subject to the "Classpath" exception as provided
    1.12 + * by Sun in the LICENSE file that accompanied this code.
    1.13 + *
    1.14 + * This code is distributed in the hope that it will be useful, but WITHOUT
    1.15 + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    1.16 + * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    1.17 + * version 2 for more details (a copy is included in the LICENSE file that
    1.18 + * accompanied this code).
    1.19 + *
    1.20 + * You should have received a copy of the GNU General Public License version
    1.21 + * 2 along with this work; if not, write to the Free Software Foundation,
    1.22 + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    1.23 + *
    1.24 + * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
    1.25 + * CA 95054 USA or visit www.sun.com if you need additional information or
    1.26 + * have any questions.
    1.27 + */
    1.28 +
    1.29 +package javax.lang.model.type;
    1.30 +
    1.31 +
    1.32 +import java.lang.annotation.Annotation;
    1.33 +import java.util.ArrayList;
    1.34 +import java.util.List;
    1.35 +import java.util.Collections;
    1.36 +
    1.37 +import javax.lang.model.element.Element;
    1.38 +
    1.39 +
    1.40 +/**
    1.41 + * Thrown when an application attempts to access a sequence of {@link
    1.42 + * Class} objects each corresponding to a {@link TypeMirror}.
    1.43 + *
    1.44 + * @author Joseph D. Darcy
    1.45 + * @author Scott Seligman
    1.46 + * @author Peter von der Ahé
    1.47 + * @see MirroredTypeException
    1.48 + * @see Element#getAnnotation(Class)
    1.49 + * @since 1.6
    1.50 + */
    1.51 +public class MirroredTypesException extends RuntimeException {
    1.52 +
    1.53 +    private static final long serialVersionUID = 269;
    1.54 +
    1.55 +    // Should this be non-final for a custum readObject method?
    1.56 +    private final transient List<? extends TypeMirror> types;   // cannot be serialized
    1.57 +
    1.58 +    /**
    1.59 +     * Constructs a new MirroredTypesException for the specified types.
    1.60 +     *
    1.61 +     * @param types  the types being accessed
    1.62 +     */
    1.63 +    public MirroredTypesException(List<? extends TypeMirror> types) {
    1.64 +        super("Attempt to access Class objects for TypeMirrors " + types);
    1.65 +        this.types = Collections.unmodifiableList(types);
    1.66 +    }
    1.67 +
    1.68 +    /**
    1.69 +     * Returns the type mirrors corresponding to the types being accessed.
    1.70 +     * The type mirrors may be unavailable if this exception has been
    1.71 +     * serialized and then read back in.
    1.72 +     *
    1.73 +     * @return the type mirrors in construction order, or {@code null} if unavailable
    1.74 +     */
    1.75 +    public List<? extends TypeMirror> getTypeMirrors() {
    1.76 +        return types;
    1.77 +    }
    1.78 +}

mercurial