--- old/src/share/classes/javax/lang/model/util/AbstractTypeVisitor6.java 2010-12-01 00:40:31.000000000 -0800 +++ new/src/share/classes/javax/lang/model/util/AbstractTypeVisitor6.java 2010-12-01 00:40:31.000000000 -0800 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2005, 2006, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -29,7 +29,7 @@ /** * A skeletal visitor of types with default behavior appropriate for - * the version 6 language level. + * the {@link SourceVersion#RELEASE_6 RELEASE_6} source version. * *

WARNING: The {@code TypeVisitor} interface implemented * by this class may have methods added to it in the future to @@ -95,6 +95,20 @@ } /** + * Visits a {@code DisjunctiveType} element by calling {@code + * visitUnknown}. + + * @param t {@inheritDoc} + * @param p {@inheritDoc} + * @return the result of {@code visitUnknown} + * + * @since 1.7 + */ + public R visitDisjunctive(DisjunctiveType t, P p) { + return visitUnknown(t, p); + } + + /** * {@inheritDoc} * *

The default implementation of this method in {@code