This is an automated email from the ASF dual-hosted git repository.
skygo pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans.git.
from 69849fc Merge pull request #1905 from lkishalmi/remove-snap-aa
new e7e19d6 [NETBEANS-3616]:Provided support of enable-preview hint and
debug option in Java Single Source File
new 0b0eb46 [NETBEANS-3616]: Deleted files already move under
singlesourcefile folder
new 54545c1 [NETBEANS-3616]: Refactored code for debug of singlesourcefile
new 9a462b7 Merge pull request #1857 from arusinha/netbeans-3616
The 3593 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../org-netbeans-modules-java-api-common.sig | 2 +-
java/java.api.common/nbproject/project.properties | 1 +
java/java.api.common/nbproject/project.xml | 17 ++
.../common/singlesourcefile/CompileProcess.java | 77 ++++++++
.../api/common/singlesourcefile/DebugProcess.java | 84 +++++++++
.../api/common/singlesourcefile/JPDAStart.java | 179 ++++++++++++++++++
.../common/{ => singlesourcefile}/RunProcess.java | 2 +-
.../SingleJavaSourceDebugActionProvider.java | 103 +++++++++++
.../SingleJavaSourceRunActionProvider.java | 2 +-
.../SingleSourceCompilerOptQueryImpl.java | 81 ++++++++
.../singlesourcefile/SingleSourceFileUtil.java | 61 ++++++
.../{ => singlesourcefile}/JavaFileTest.java | 2 +-
.../modules/java/hints/errors/Bundle.properties | 2 +-
.../errors/EnablePreviewSingleSourceFile.java | 206 +++++++++++++++++++++
.../modules/java/hints/resources/layer.xml | 1 +
.../src/org/netbeans/modules/java/JavaNode.java | 21 ++-
16 files changed, 833 insertions(+), 8 deletions(-)
create mode 100644
java/java.api.common/src/org/netbeans/modules/java/api/common/singlesourcefile/CompileProcess.java
create mode 100644
java/java.api.common/src/org/netbeans/modules/java/api/common/singlesourcefile/DebugProcess.java
create mode 100644
java/java.api.common/src/org/netbeans/modules/java/api/common/singlesourcefile/JPDAStart.java
rename java/java.api.common/src/org/netbeans/modules/java/api/common/{ =>
singlesourcefile}/RunProcess.java (97%)
create mode 100644
java/java.api.common/src/org/netbeans/modules/java/api/common/singlesourcefile/SingleJavaSourceDebugActionProvider.java
rename java/java.api.common/src/org/netbeans/modules/java/api/common/{ =>
singlesourcefile}/SingleJavaSourceRunActionProvider.java (98%)
create mode 100644
java/java.api.common/src/org/netbeans/modules/java/api/common/singlesourcefile/SingleSourceCompilerOptQueryImpl.java
create mode 100644
java/java.api.common/src/org/netbeans/modules/java/api/common/singlesourcefile/SingleSourceFileUtil.java
rename
java/java.api.common/test/unit/src/org/netbeans/modules/java/api/common/{ =>
singlesourcefile}/JavaFileTest.java (97%)
create mode 100644
java/java.hints/src/org/netbeans/modules/java/hints/errors/EnablePreviewSingleSourceFile.java
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists