src/share/classes/com/sun/source/tree/IntersectionTypeTree.java

Fri, 30 Nov 2012 15:14:48 +0000

author
mcimadamore
date
Fri, 30 Nov 2012 15:14:48 +0000
changeset 1436
f6f1fd261f57
child 1590
011cf7e0a148
permissions
-rw-r--r--

8002099: Add support for intersection types in cast expression
Summary: Add parser and type-checking support for intersection types in cast expressions
Reviewed-by: jjg

mcimadamore@1436 1 /*
mcimadamore@1436 2 * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
mcimadamore@1436 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
mcimadamore@1436 4 *
mcimadamore@1436 5 * This code is free software; you can redistribute it and/or modify it
mcimadamore@1436 6 * under the terms of the GNU General Public License version 2 only, as
mcimadamore@1436 7 * published by the Free Software Foundation. Oracle designates this
mcimadamore@1436 8 * particular file as subject to the "Classpath" exception as provided
mcimadamore@1436 9 * by Oracle in the LICENSE file that accompanied this code.
mcimadamore@1436 10 *
mcimadamore@1436 11 * This code is distributed in the hope that it will be useful, but WITHOUT
mcimadamore@1436 12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
mcimadamore@1436 13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
mcimadamore@1436 14 * version 2 for more details (a copy is included in the LICENSE file that
mcimadamore@1436 15 * accompanied this code).
mcimadamore@1436 16 *
mcimadamore@1436 17 * You should have received a copy of the GNU General Public License version
mcimadamore@1436 18 * 2 along with this work; if not, write to the Free Software Foundation,
mcimadamore@1436 19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
mcimadamore@1436 20 *
mcimadamore@1436 21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
mcimadamore@1436 22 * or visit www.oracle.com if you need additional information or have any
mcimadamore@1436 23 * questions.
mcimadamore@1436 24 */
mcimadamore@1436 25
mcimadamore@1436 26 package com.sun.source.tree;
mcimadamore@1436 27
mcimadamore@1436 28 import java.util.List;
mcimadamore@1436 29
mcimadamore@1436 30 /**
mcimadamore@1436 31 * A tree node for an intersection type in a cast expression.
mcimadamore@1436 32 *
mcimadamore@1436 33 * @author Maurizio Cimadamore
mcimadamore@1436 34 *
mcimadamore@1436 35 * @since 1.8
mcimadamore@1436 36 */
mcimadamore@1436 37 public interface IntersectionTypeTree extends Tree {
mcimadamore@1436 38 List<? extends Tree> getBounds();
mcimadamore@1436 39 }

mercurial