I1.java revision 3233:b5d08bc0d224
1317027Sdim/*
2317027Sdim * Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved.
3353358Sdim * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4353358Sdim *
5353358Sdim * This code is free software; you can redistribute it and/or modify it
6317027Sdim * under the terms of the GNU General Public License version 2 only, as
7317027Sdim * published by the Free Software Foundation.
8317027Sdim *
9317027Sdim * This code is distributed in the hope that it will be useful, but WITHOUT
10317027Sdim * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11317027Sdim * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12317027Sdim * version 2 for more details (a copy is included in the LICENSE file that
13317027Sdim * accompanied this code).
14317027Sdim *
15317027Sdim * You should have received a copy of the GNU General Public License version
16317027Sdim * 2 along with this work; if not, write to the Free Software Foundation,
17317027Sdim * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18317027Sdim *
19317027Sdim * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20317027Sdim * or visit www.oracle.com if you need additional information or have any
21317027Sdim * questions.
22317027Sdim */
23317027Sdim
24317027Sdimpackage pkg3;
25317027Sdim
26317027Sdimpublic interface I1 extends I2, I4, I3 {}
27341825Sdim