mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-30 08:41:59 +07:00
GitOrigin-RevId: fd94a5c490d3091ff6f10792ad6d459058b9bfba
21 lines
514 B
Java
21 lines
514 B
Java
import com.intellij.modcommand.ActionContext;
|
|
import com.intellij.modcommand.ModCommand;
|
|
import com.intellij.modcommand.ModCommandAction;
|
|
import com.intellij.modcommand.Presentation;
|
|
|
|
public class MyModCommandIntentionWithDescription implements ModCommandAction {
|
|
@Override
|
|
public Presentation getPresentation(ActionContext context) {
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public ModCommand perform(ActionContext context) {
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public String getFamilyName() {
|
|
return "";
|
|
}
|
|
} |