mcimadamore@550: /* darcy@969: * Copyright (c) 2010, 2011 Oracle and/or its affiliates. All rights reserved. mcimadamore@550: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. mcimadamore@550: * mcimadamore@550: * This code is free software; you can redistribute it and/or modify it mcimadamore@550: * under the terms of the GNU General Public License version 2 only, as ohair@557: * published by the Free Software Foundation. Oracle designates this mcimadamore@550: * particular file as subject to the "Classpath" exception as provided ohair@557: * by Oracle in the LICENSE file that accompanied this code. mcimadamore@550: * mcimadamore@550: * This code is distributed in the hope that it will be useful, but WITHOUT mcimadamore@550: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or mcimadamore@550: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License mcimadamore@550: * version 2 for more details (a copy is included in the LICENSE file that mcimadamore@550: * accompanied this code). mcimadamore@550: * mcimadamore@550: * You should have received a copy of the GNU General Public License version mcimadamore@550: * 2 along with this work; if not, write to the Free Software Foundation, mcimadamore@550: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. mcimadamore@550: * ohair@557: * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA ohair@557: * or visit www.oracle.com if you need additional information or have any ohair@557: * questions. mcimadamore@550: */ mcimadamore@550: mcimadamore@550: package com.sun.source.tree; mcimadamore@550: mcimadamore@550: import java.util.List; mcimadamore@550: mcimadamore@550: /** darcy@969: * A tree node for a union type expression in a multicatch var declaration. mcimadamore@550: * mcimadamore@550: * @author Maurizio Cimadamore mcimadamore@550: * mcimadamore@550: * @since 1.7 mcimadamore@550: */ darcy@969: public interface UnionTypeTree extends Tree { jjg@724: List getTypeAlternatives(); ohair@557: }