List of usage examples for com.intellij.openapi.fileEditor FileEditorProvider interface-usage
From source file net.nicoulaj.idea.markdown.editor.MarkdownPreviewEditorProvider.java
/**
* {@link FileEditorProvider} implementation to provide {@link MarkdownPreviewEditor}.
*
* @author Julien Nicoulaud <julien.nicoulaud@gmail.com>
* @see MarkdownPreviewEditor
* @since 0.1
From source file org.asciidoc.intellij.editor.AsciiDocPreviewEditorProvider.java
/** @author Julien Viet */ public class AsciiDocPreviewEditorProvider implements FileEditorProvider, PossiblyDumbAware { /** The id of the editors provided by this {@link FileEditorProvider}. */ public static final String EDITOR_TYPE_ID = AsciiDocLanguage.LANGUAGE_NAME + "PreviewEditor";
From source file org.cdv.intellij.ui.editor.CDVIDEAEditorProvider.java
/** * DumbAware: indicates that the editor can be showed when indexed are not ready * then in the editor itself ({@link CDVIDEAFileEditor}) the loading phase is done * inside DumbService.runWhenSmart */ public class CDVIDEAEditorProvider extends FileTypeFactory implements FileEditorProvider, DumbAware {
From source file org.codinjutsu.tools.mongo.view.editor.MongoDataEditorProvider.java
public class MongoDataEditorProvider implements FileEditorProvider, ApplicationComponent, DumbAware { @Override public boolean accept(@NotNull Project project, @NotNull VirtualFile file) { return file instanceof MongoObjectFile; }
From source file org.codinjutsu.tools.nosql.commons.view.editor.NoSqlDatabaseDataEditorProvider.java
public class NoSqlDatabaseDataEditorProvider implements FileEditorProvider, ApplicationComponent, DumbAware { @Override public boolean accept(@NotNull Project project, @NotNull VirtualFile file) { return DatabaseVendorUIManager.getInstance(project).accept(file); }
From source file org.cordovastudio.editors.designer.CordovaDesignerEditorProvider.java
/** * Created by cti on 28.08.14. */ public class CordovaDesignerEditorProvider implements FileEditorProvider { private static final Logger LOG = Logger.getInstance(CordovaDesignerEditorProvider.class);
From source file org.cordovastudio.editors.storyboard.CordovaStoryboardEditorProvider.java
public class CordovaStoryboardEditorProvider implements FileEditorProvider, DumbAware { @NonNls public static final String ID = "storyboard"; @Override public boolean accept(@NotNull Project project, @NotNull VirtualFile file) {
From source file org.exbin.deltahex.intellij.DeltaHexWindowProvider.java
/**
* Window provider for hexadecimal editor.
*
* @author ExBin Project (http://exbin.org)
* @version 0.1.2 2017/02/04
*/
From source file org.intellij.images.editor.impl.ImageFileEditorProvider.java
/** * Image editor provider. * * @author <a href="mailto:aefimov.box@gmail.com">Alexey Efimov</a> */ final class ImageFileEditorProvider implements FileEditorProvider, DumbAware {
From source file org.jetbrains.plugins.terminal.vfs.TerminalSessionEditorProvider.java
/** * @author traff */ public class TerminalSessionEditorProvider implements FileEditorProvider, DumbAware { @Override public boolean accept(@NotNull Project project, @NotNull VirtualFile file) {