-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enhanced verification result json #156
Open
arminzavada
wants to merge
7
commits into
ftsrg:dev
Choose a base branch
from
arminzavada:sysmlv2
base: dev
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
a46cd31
Update VerificationHandler.java
arminzavada 32daa5c
Updated JRE to 17
arminzavada e78ea52
Extended verification results
arminzavada 443cff6
Merge remote-tracking branch 'upstream/dev' into sysmlv2
arminzavada 956b24d
Refactored verification results
arminzavada 16b43dc
Added property accessors
arminzavada aa0ea46
Reverted incorrect name and vendor strings
arminzavada File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 13 additions & 13 deletions
26
plugins/core/hu.bme.mit.gamma.statechart.language.ui/.classpath
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<classpath> | ||
<classpathentry kind="src" path="src"/> | ||
<classpathentry excluding="**/.gitignore" kind="src" path="xtend-gen"/> | ||
<classpathentry excluding="**/.gitignore" kind="src" path="src-gen"/> | ||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17"> | ||
<attributes> | ||
<attribute name="module" value="true"/> | ||
</attributes> | ||
</classpathentry> | ||
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/> | ||
<classpathentry kind="output" path="bin"/> | ||
</classpath> | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<classpath> | ||
<classpathentry kind="src" path="src"/> | ||
<classpathentry excluding="**/.gitignore" kind="src" path="xtend-gen"/> | ||
<classpathentry excluding="**/.gitignore" kind="src" path="src-gen"/> | ||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17"> | ||
<attributes> | ||
<attribute name="module" value="true"/> | ||
</attributes> | ||
</classpathentry> | ||
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/> | ||
<classpathentry kind="output" path="bin"/> | ||
</classpath> |
72 changes: 36 additions & 36 deletions
72
plugins/core/hu.bme.mit.gamma.statechart.language.ui/META-INF/MANIFEST.MF
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,36 @@ | ||
Manifest-Version: 1.0 | ||
Bundle-ManifestVersion: 2 | ||
Bundle-Name: Gamma Statechart Language UI | ||
Bundle-Vendor: BME-FTSRG | ||
Bundle-Version: 2.9.0.qualifier | ||
Bundle-SymbolicName: hu.bme.mit.gamma.statechart.language.ui; singleton:=true | ||
Bundle-ActivationPolicy: lazy | ||
Require-Bundle: hu.bme.mit.gamma.statechart.language, | ||
hu.bme.mit.gamma.statechart.language.ide, | ||
hu.bme.mit.gamma.statechart.model, | ||
org.eclipse.xtext.ui, | ||
org.eclipse.xtext.ui.shared, | ||
org.eclipse.xtext.ui.codetemplates.ui, | ||
org.eclipse.ui.editors;bundle-version="3.5.0", | ||
org.eclipse.ui.ide;bundle-version="3.5.0", | ||
org.eclipse.ui, | ||
org.eclipse.compare, | ||
org.eclipse.xtext.builder, | ||
hu.bme.mit.gamma.action.language.ui, | ||
hu.bme.mit.gamma.expression.language.ui, | ||
hu.bme.mit.gamma.language.util, | ||
org.eclipse.jdt.core, | ||
org.eclipse.xtend.lib, | ||
org.eclipse.core.runtime, | ||
org.eclipse.core.resources, | ||
org.eclipse.pde.core, | ||
org.eclipse.ui.forms | ||
Import-Package: org.apache.log4j | ||
Bundle-RequiredExecutionEnvironment: JavaSE-17 | ||
Export-Package: hu.bme.mit.gamma.statechart.language.ui.contentassist, | ||
hu.bme.mit.gamma.statechart.language.ui.internal, | ||
hu.bme.mit.gamma.statechart.language.ui.quickfix, | ||
hu.bme.mit.gamma.statechart.language.ui.serializer, | ||
hu.bme.mit.gamma.statechart.language.ui.wizard | ||
Bundle-Activator: hu.bme.mit.gamma.statechart.language.ui.internal.LanguageActivator | ||
Automatic-Module-Name: hu.bme.mit.gamma.statechart.language.ui | ||
Manifest-Version: 1.0 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Something is strange here: everything is the same... |
||
Bundle-ManifestVersion: 2 | ||
Bundle-Name: Gamma Statechart Language UI | ||
Bundle-Vendor: BME-FTSRG | ||
Bundle-Version: 2.9.0.qualifier | ||
Bundle-SymbolicName: hu.bme.mit.gamma.statechart.language.ui; singleton:=true | ||
Bundle-ActivationPolicy: lazy | ||
Require-Bundle: hu.bme.mit.gamma.statechart.language, | ||
hu.bme.mit.gamma.statechart.language.ide, | ||
hu.bme.mit.gamma.statechart.model, | ||
org.eclipse.xtext.ui, | ||
org.eclipse.xtext.ui.shared, | ||
org.eclipse.xtext.ui.codetemplates.ui, | ||
org.eclipse.ui.editors;bundle-version="3.5.0", | ||
org.eclipse.ui.ide;bundle-version="3.5.0", | ||
org.eclipse.ui, | ||
org.eclipse.compare, | ||
org.eclipse.xtext.builder, | ||
hu.bme.mit.gamma.action.language.ui, | ||
hu.bme.mit.gamma.expression.language.ui, | ||
hu.bme.mit.gamma.language.util, | ||
org.eclipse.jdt.core, | ||
org.eclipse.xtend.lib, | ||
org.eclipse.core.runtime, | ||
org.eclipse.core.resources, | ||
org.eclipse.pde.core, | ||
org.eclipse.ui.forms | ||
Import-Package: org.apache.log4j | ||
Bundle-RequiredExecutionEnvironment: JavaSE-17 | ||
Export-Package: hu.bme.mit.gamma.statechart.language.ui.contentassist, | ||
hu.bme.mit.gamma.statechart.language.ui.internal, | ||
hu.bme.mit.gamma.statechart.language.ui.quickfix, | ||
hu.bme.mit.gamma.statechart.language.ui.serializer, | ||
hu.bme.mit.gamma.statechart.language.ui.wizard | ||
Bundle-Activator: hu.bme.mit.gamma.statechart.language.ui.internal.LanguageActivator | ||
Automatic-Module-Name: hu.bme.mit.gamma.statechart.language.ui |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,12 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<classpath> | ||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11"/> | ||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17"> | ||
<attributes> | ||
<attribute name="module" value="true"/> | ||
</attributes> | ||
</classpathentry> | ||
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/> | ||
<classpathentry kind="src" path="src/"/> | ||
<classpathentry kind="src" path="src-gen/"/> | ||
<classpathentry kind="src" path="src"/> | ||
<classpathentry kind="src" path="src-gen"/> | ||
<classpathentry kind="output" path="bin"/> | ||
</classpath> |
9 changes: 6 additions & 3 deletions
9
plugins/core/hu.bme.mit.gamma.validation/.settings/org.eclipse.jdt.core.prefs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
eclipse.preferences.version=1 | ||
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled | ||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=11 | ||
org.eclipse.jdt.core.compiler.compliance=11 | ||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=17 | ||
org.eclipse.jdt.core.compiler.compliance=17 | ||
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error | ||
org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled | ||
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error | ||
org.eclipse.jdt.core.compiler.source=11 | ||
org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning | ||
org.eclipse.jdt.core.compiler.release=enabled | ||
org.eclipse.jdt.core.compiler.source=17 |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Something is strange here: everything is the same...