/
MikhailShad
/
ArchDB
Обзор
Документация
Войти
/
MikhailShad
/
ArchDB
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/main/java/org/archdb/plugins/idea/language/Icons.java
36 строк
2 KB
Андрей Барсуков
Import IntelliJ plugin as 0.1.0
19 апр 2026, 20:39
19 апр 2026, 20:39
c9f72b9
Код
Авторство
О чём код?
package org.archdb.plugins.idea.language; import com.intellij.icons.AllIcons; import com.intellij.openapi.util.IconLoader; import com.intellij.util.PlatformIcons; import javax.swing.*; public class Icons { public static final Icon ADB_FILE = IconLoader.getIcon("/icons/arch_db.png", Icons.class); public static final Icon PACKAGE = PlatformIcons.PACKAGE_ICON; public static final Icon METADATA = AllIcons.Nodes.DataSchema; public static final Icon SCHEMA = AllIcons.Nodes.Folder; public static final Icon TABLE = AllIcons.Nodes.DataTables; public static final Icon COLUMN = AllIcons.Nodes.DataColumn; public static final Icon ENUM = AllIcons.Nodes.Enum; public static final Icon GROUP = AllIcons.General.Groups; public static final Icon GROUP_MEMBER = AllIcons.Nodes.Alias; public static final Icon REFERENCE = AllIcons.Nodes.Related; public static final Icon RELATION = AllIcons.Nodes.Related; public static final Icon PROJECT = AllIcons.Nodes.Project; public static final Icon TEMPLATE = AllIcons.Nodes.Template; public static final Icon CHECKS = AllIcons.Actions.Checked; public static final Icon INDEX = AllIcons.Actions.Find; public static final Icon PROPERTIES = AllIcons.Actions.Properties; public static final Icon PROPERTY = AllIcons.Nodes.Property; public static final Icon IMPORT = AllIcons.ToolbarDecorator.Import; public static final Icon EXPORT = AllIcons.ToolbarDecorator.Export; public static final Icon EMPTY = AllIcons.Nodes.EmptyNode; public static final Icon PK = AllIcons.Nodes.FieldPK; public static final Icon FOLDER = AllIcons.Nodes.Folder; public static final Icon CIRCLE = IconLoader.getIcon("/icons/circle.png", Icons.class); public static final Icon GEX = IconLoader.getIcon("/icons/gex.png", Icons.class); }