Test2.java revision 3233:b5d08bc0d224
1344063Smm/*
2344063Smm * Copyright (c) 2014, 2015, Oracle and/or its affiliates. All rights reserved.
3344063Smm * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4344063Smm *
5344063Smm * This code is free software; you can redistribute it and/or modify it
6344063Smm * under the terms of the GNU General Public License version 2 only, as
7344063Smm * published by the Free Software Foundation.
8344063Smm *
9344063Smm * This code is distributed in the hope that it will be useful, but WITHOUT
10344063Smm * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11344063Smm * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12344063Smm * version 2 for more details (a copy is included in the LICENSE file that
13344063Smm * accompanied this code).
14344063Smm *
15344063Smm * You should have received a copy of the GNU General Public License version
16344063Smm * 2 along with this work; if not, write to the Free Software Foundation,
17344063Smm * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18344063Smm *
19344063Smm * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20344063Smm * or visit www.oracle.com if you need additional information or have any
21344063Smm * questions.
22344063Smm */
23344063Smm
24344063Smmpackage pkg;
25344063Smm
26344063Smmimport java.io.Serializable;
27344063Smm
28344063Smm/**
29344063Smm * @see java.io.Serializable
30344063Smm */
31344063Smmpublic interface Test2 extends Serializable {}
32344063Smm
33344063Smm