module-info.java revision 3408:e0bc2c27ecf3
1264790Sbapt/*
2264790Sbapt * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
3264790Sbapt * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4264790Sbapt *
5264790Sbapt * This code is free software; you can redistribute it and/or modify it
6264790Sbapt * under the terms of the GNU General Public License version 2 only, as
7264790Sbapt * published by the Free Software Foundation.
8264790Sbapt *
9264790Sbapt * This code is distributed in the hope that it will be useful, but WITHOUT
10264790Sbapt * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11264790Sbapt * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12264790Sbapt * version 2 for more details (a copy is included in the LICENSE file that
13264790Sbapt * accompanied this code).
14264790Sbapt *
15264790Sbapt * You should have received a copy of the GNU General Public License version
16264790Sbapt * 2 along with this work; if not, write to the Free Software Foundation,
17264790Sbapt * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18264790Sbapt *
19264790Sbapt * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20264790Sbapt * or visit www.oracle.com if you need additional information or have any
21264790Sbapt * questions.
22264790Sbapt */
23264790Sbapt
24264790Sbapt// key: compiler.err.service.implementation.is.inner
25264790Sbapt
26264790Sbaptmodule ServiceImplementationIsInner {
27264790Sbapt     exports exported;
28264790Sbapt     provides exported.Service with impl.ServiceImplementation.Inner;
29264790Sbapt}
30264790Sbapt