module-info.java (3607:bfc6d670ec1f) module-info.java (3743:afaafd7267cc)
1/*
1/*
2 * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
2 * Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. Oracle designates this
8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
10 *

--- 14 unchanged lines hidden (view full) ---

25
26/**
27 * This document is the API specification for JShell -- support for
28 * Java™ Programming Language 'snippet' evaluating tools, such as
29 * Read-Eval-Print Loops (REPLs).
30 */
31module jdk.jshell {
32 requires public java.compiler;
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. Oracle designates this
8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
10 *

--- 14 unchanged lines hidden (view full) ---

25
26/**
27 * This document is the API specification for JShell -- support for
28 * Java™ Programming Language 'snippet' evaluating tools, such as
29 * Read-Eval-Print Loops (REPLs).
30 */
31module jdk.jshell {
32 requires public java.compiler;
33 requires java.desktop;
34 requires java.prefs;
35 requires jdk.compiler;
36 requires jdk.internal.le;
33 requires java.prefs;
34 requires jdk.compiler;
35 requires jdk.internal.le;
36 requires jdk.internal.ed;
37 requires jdk.internal.opt;
38 requires jdk.jdi;
39
40 exports jdk.jshell;
41 exports jdk.jshell.spi;
42 exports jdk.jshell.execution;
37 requires jdk.internal.opt;
38 requires jdk.jdi;
39
40 exports jdk.jshell;
41 exports jdk.jshell.spi;
42 exports jdk.jshell.execution;
43
44 uses jdk.internal.editor.spi.BuildInEditorProvider;
43}
45}