Example usage for com.intellij.openapi.fileEditor FileEditorProvider interface-usage

List of usage examples for com.intellij.openapi.fileEditor FileEditorProvider interface-usage

Introduction

In this page you can find the example usage for com.intellij.openapi.fileEditor FileEditorProvider interface-usage.

Usage

From source file com.mac.hazewinkel.plist.editor.impl.PListEditorProvider.java

/**
 * @author Maarten Hazewinkel
 */
public class PListEditorProvider implements FileEditorProvider, DumbAware {
    @NonNls
    private static final String EDITOR_TYPE_ID = "pList";

From source file com.microsoft.azure.hdinsight.jobs.framework.JobViewEditorProvider.java

public class JobViewEditorProvider implements FileEditorProvider {

    public static Key<IClusterDetail> JOB_VIEW_KEY = new Key<>("com.microsoft.azure.hdinsight.jobview");
    public static Key<String> JOB_VIEW_UUID = new Key<>("com.microsoft.azure.hdinsight.jobview.uuid");

    private static Logger LOG = Logger.getInstance(JobViewEditorProvider.class.getName());

From source file com.microsoft.intellij.helpers.rediscache.RedisCachePropertyViewProvider.java

public class RedisCachePropertyViewProvider implements FileEditorProvider {

    private static final String REDIS_PROPERTY_TYPE = "Microsoft.Cache/Redis";

    @Override
    public boolean accept(@NotNull Project project, @NotNull VirtualFile virtualFile) {

From source file com.microsoft.intellij.helpers.storage.BlobExplorerFileEditorProvider.java

public class BlobExplorerFileEditorProvider implements FileEditorProvider, DumbAware {
    public static Key<BlobContainer> CONTAINER_KEY = new Key<BlobContainer>("blobContainer");

    @Override
    public boolean accept(@NotNull Project project, @NotNull VirtualFile virtualFile) {
        ClientStorageAccount storageAccount = virtualFile.getUserData(UIHelperImpl.STORAGE_KEY);

From source file com.microsoft.intellij.helpers.storage.QueueExplorerFileEditorProvider.java

public class QueueExplorerFileEditorProvider implements FileEditorProvider, DumbAware {
    public static Key<Queue> QUEUE_KEY = new Key<Queue>("queue");

    @Override
    public boolean accept(@NotNull Project project, @NotNull VirtualFile virtualFile) {
        ClientStorageAccount storageAccount = virtualFile.getUserData(UIHelperImpl.STORAGE_KEY);

From source file com.microsoft.intellij.helpers.storage.TableExplorerFileEditorProvider.java

public class TableExplorerFileEditorProvider implements FileEditorProvider, DumbAware {
    public static Key<Table> TABLE_KEY = new Key<Table>("table");

    @Override
    public boolean accept(@NotNull Project project, @NotNull VirtualFile virtualFile) {
        ClientStorageAccount storageAccount = virtualFile.getUserData(UIHelperImpl.STORAGE_KEY);

From source file com.vladsch.idea.multimarkdown.editor.MultiMarkdownFxPreviewEditorProvider.java

public class MultiMarkdownFxPreviewEditorProvider implements FileEditorProvider, PossiblyDumbAware {
    private static final org.apache.log4j.Logger logger = org.apache.log4j.Logger
            .getLogger(MultiMarkdownFxPreviewEditorProvider.class);

    private static final int FX_PREVIEW_UNKNOWN = 0;
    private static final int FX_PREVIEW_HAVE_JAR = 1;

From source file com.vladsch.idea.multimarkdown.editor.MultiMarkdownPreviewEditorProvider.java

public class MultiMarkdownPreviewEditorProvider implements FileEditorProvider, PossiblyDumbAware {

    public static final String EDITOR_TYPE_ID = MultiMarkdownLanguage.NAME + "PreviewEditor";

    public static boolean accept(@NotNull final VirtualFile file) {
        String fileExt = file.getExtension();

From source file git4idea.GitRevisionGraphEditorProvider.java

/**
 * Git revision graph editor
 */
public class GitRevisionGraphEditorProvider implements FileEditorProvider {
    //TODO: implement this whole class!!  Do we really need this????
    public boolean accept(@NotNull Project project, @NotNull VirtualFile file) {

From source file mobi.hsz.idea.latex.editor.LatexFileEditorProvider.java

/**
 * {@link FileEditorProvider} implementation to provide {@link LatexFileEditorProvider}.
 *
 * @author Jakub Chrzanowski <jakub@hsz.mobi>
 * @since 0.1
 */