Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
K
kernel
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
af3
kernel
Commits
9a88b93f
Commit
9a88b93f
authored
4 years ago
by
Alexander Diewald
Browse files
Options
Downloads
Plain Diff
Merge remote-tracking branch 'origin/master' into 3541
parents
1be86733
895f041d
No related branches found
Branches containing commit
No related tags found
1 merge request
!126
3541
Changes
21
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
org.fortiss.tooling.kernel.ui/src/org/fortiss/tooling/kernel/ui/service/IMarkerService.java
+7
-1
7 additions, 1 deletion
...org/fortiss/tooling/kernel/ui/service/IMarkerService.java
with
7 additions
and
1 deletion
org.fortiss.tooling.kernel.ui/src/org/fortiss/tooling/kernel/ui/service/IMarkerService.java
+
7
−
1
View file @
9a88b93f
...
@@ -25,6 +25,9 @@ import org.fortiss.tooling.kernel.extension.data.IConstraintViolation.ESeverity;
...
@@ -25,6 +25,9 @@ import org.fortiss.tooling.kernel.extension.data.IConstraintViolation.ESeverity;
import
org.fortiss.tooling.kernel.extension.data.ITopLevelElement
;
import
org.fortiss.tooling.kernel.extension.data.ITopLevelElement
;
import
org.fortiss.tooling.kernel.service.IConstraintCheckerService
;
import
org.fortiss.tooling.kernel.service.IConstraintCheckerService
;
import
org.fortiss.tooling.kernel.ui.internal.MarkerService
;
import
org.fortiss.tooling.kernel.ui.internal.MarkerService
;
import
org.fortiss.tooling.kernel.ui.internal.views.fx.ErrorViewFXViewPart
;
import
javafx.scene.image.ImageView
;
/**
/**
* The marker service manages model element specific markers. It uses the
* The marker service manages model element specific markers. It uses the
...
@@ -36,7 +39,7 @@ import org.fortiss.tooling.kernel.ui.internal.MarkerService;
...
@@ -36,7 +39,7 @@ import org.fortiss.tooling.kernel.ui.internal.MarkerService;
public
interface
IMarkerService
{
public
interface
IMarkerService
{
/** Returns view id of the marker view. */
/** Returns view id of the marker view. */
public
static
final
String
MARKER_VIEW
=
"org.fortiss.tooling.kernel.model.marker"
;
public
static
final
String
MARKER_VIEW
=
ErrorViewFXViewPart
.
ID
;
/** Returns the service instance. */
/** Returns the service instance. */
public
static
IMarkerService
getInstance
()
{
public
static
IMarkerService
getInstance
()
{
...
@@ -68,6 +71,9 @@ public interface IMarkerService {
...
@@ -68,6 +71,9 @@ public interface IMarkerService {
*/
*/
ImageDescriptor
getImageFor
(
ESeverity
severity
,
boolean
smallDecoration
);
ImageDescriptor
getImageFor
(
ESeverity
severity
,
boolean
smallDecoration
);
/** Similar to {@link #getImageFor(ESeverity, boolean)} but for Java FX. */
ImageView
getFXImageFor
(
ESeverity
severity
,
boolean
smallDecoration
);
/**
/**
* <p>
* <p>
* Returns a shared icon appropriate for the severity. Flag indicates small sized image.
* Returns a shared icon appropriate for the severity. Flag indicates small sized image.
...
...
This diff is collapsed.
Click to expand it.
Prev
1
2
Next
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment