mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-29 17:57:53 +08:00
10 lines
203 B
Java
10 lines
203 B
Java
package org.jetbrains.plugins.sample;
|
|
|
|
import com.intellij.openapi.components.ApplicationComponent;
|
|
|
|
/**
|
|
* @author Anna Bulenkova
|
|
*/
|
|
interface DummyApplicationComponent extends ApplicationComponent{
|
|
}
|