Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
J
jetbrains-plugin
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
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
JastAdd
jetbrains-plugin
Merge requests
!5
Resolve "Structure View Support"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Structure View Support"
feature/structure-view-support
into
develop
Overview
1
Commits
11
Pipelines
5
Changes
1
Merged
Johannes Mey
requested to merge
feature/structure-view-support
into
develop
3 years ago
Overview
1
Commits
11
Pipelines
5
Changes
1
Expand
Closes
#3 (closed)
Edited
3 years ago
by
Johannes Mey
0
0
Merge request reports
Viewing commit
9c1f1ddd
Prev
Next
Show latest version
1 file
+
5
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
9c1f1ddd
add more icon types (still pointing to the same file), more needed
· 9c1f1ddd
Johannes Mey
authored
3 years ago
src/main/java/org/jastadd/tooling/util/JastAddIcons.java
+
5
−
0
Options
@@ -7,6 +7,11 @@ import javax.swing.*;
public
class
JastAddIcons
{
public
static
final
Icon
FILE
=
IconLoader
.
getIcon
(
"/META-INF/pluginIcon.svg"
,
JastAddIcons
.
class
);
public
static
final
Icon
ASPECT
=
IconLoader
.
getIcon
(
"/META-INF/pluginIcon.svg"
,
JastAddIcons
.
class
);
public
static
final
Icon
ATTRIBUTE
=
IconLoader
.
getIcon
(
"/META-INF/pluginIcon.svg"
,
JastAddIcons
.
class
);
public
static
final
Icon
COL_ATTRIBUTE
=
IconLoader
.
getIcon
(
"/META-INF/pluginIcon.svg"
,
JastAddIcons
.
class
);
public
static
final
Icon
INH_ATTRIBUTE
=
IconLoader
.
getIcon
(
"/META-INF/pluginIcon.svg"
,
JastAddIcons
.
class
);
public
static
final
Icon
SYN_ATTRIBUTE
=
IconLoader
.
getIcon
(
"/META-INF/pluginIcon.svg"
,
JastAddIcons
.
class
);
private
JastAddIcons
()
{
throw
new
IllegalStateException
(
"Utility class"
);
Loading