mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-05 01:50:56 +07:00
All icons reside in the corresponding modules now GitOrigin-RevId: c5fe0b11a37256d1cae4d2067f17c6802a7721b8
19 lines
774 B
Java
19 lines
774 B
Java
// Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
|
|
package icons;
|
|
|
|
import com.intellij.ui.IconManager;
|
|
import org.jetbrains.annotations.NotNull;
|
|
|
|
import javax.swing.*;
|
|
|
|
/**
|
|
* NOTE THIS FILE IS AUTO-GENERATED
|
|
* DO NOT EDIT IT BY HAND, run "Generate icon classes" configuration instead
|
|
*/
|
|
public final class ExternalSystemIcons {
|
|
private static @NotNull Icon load(@NotNull String expUIPath, @NotNull String path, int cacheKey, int flags) {
|
|
return IconManager.getInstance().loadRasterizedIcon(path, expUIPath, ExternalSystemIcons.class.getClassLoader(), cacheKey, flags);
|
|
}
|
|
/** 16x16 */ public static final @NotNull Icon Task = load("icons/newui/task.svg", "icons/task.svg", -1107166924, 0);
|
|
}
|