B.java revision 3233:b5d08bc0d224
1133819Stjr/*
2133819Stjr * Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
3133819Stjr * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4133819Stjr *
5133819Stjr * This code is free software; you can redistribute it and/or modify it
6133819Stjr * under the terms of the GNU General Public License version 2 only, as
7159581Snetchild * published by the Free Software Foundation.
8133819Stjr *
9146806Srwatson * This code is distributed in the hope that it will be useful, but WITHOUT
10146806Srwatson * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11146806Srwatson * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12146806Srwatson * version 2 for more details (a copy is included in the LICENSE file that
13146806Srwatson * accompanied this code).
14156842Snetchild *
15133819Stjr * You should have received a copy of the GNU General Public License version
16133819Stjr * 2 along with this work; if not, write to the Free Software Foundation,
17133819Stjr * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18133819Stjr *
19133819Stjr * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20133819Stjr * or visit www.oracle.com if you need additional information or have any
21133819Stjr * questions.
22133819Stjr */
23160797Sjhb
24133819Stjrpackage diamond;
25160797Sjhb
26133819Stjrpublic interface B extends A {
27156874Sru    /**
28133819Stjr     * bDoc.
29133819Stjr     */
30133819Stjr    void bMethod();
31143197Ssobomax}
32133819Stjr