test/com/sun/javadoc/testLambdaFeature/pkg/A.java

Tue, 25 Dec 2012 17:23:59 -0800

author
bpatel
date
Tue, 25 Dec 2012 17:23:59 -0800
changeset 1468
690c41cdab55
child 2233
4a6f853f8721
permissions
-rw-r--r--

8004893: the javadoc/doclet needs to be updated to accommodate lambda changes
Reviewed-by: jjg

bpatel@1468 1 /*
bpatel@1468 2 * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
bpatel@1468 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
bpatel@1468 4 *
bpatel@1468 5 * This code is free software; you can redistribute it and/or modify it
bpatel@1468 6 * under the terms of the GNU General Public License version 2 only, as
bpatel@1468 7 * published by the Free Software Foundation.
bpatel@1468 8 *
bpatel@1468 9 * This code is distributed in the hope that it will be useful, but WITHOUT
bpatel@1468 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
bpatel@1468 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
bpatel@1468 12 * version 2 for more details (a copy is included in the LICENSE file that
bpatel@1468 13 * accompanied this code).
bpatel@1468 14 *
bpatel@1468 15 * You should have received a copy of the GNU General Public License version
bpatel@1468 16 * 2 along with this work; if not, write to the Free Software Foundation,
bpatel@1468 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
bpatel@1468 18 *
bpatel@1468 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
bpatel@1468 20 * or visit www.oracle.com if you need additional information or have any
bpatel@1468 21 * questions.
bpatel@1468 22 */
bpatel@1468 23
bpatel@1468 24 package pkg;
bpatel@1468 25
bpatel@1468 26 public interface A {
bpatel@1468 27
bpatel@1468 28 public void method1();
bpatel@1468 29
bpatel@1468 30 public default void defaultMethod() { }
bpatel@1468 31 }

mercurial