Example usage for com.intellij.openapi.fileEditor FileEditorPolicy NONE

List of usage examples for com.intellij.openapi.fileEditor FileEditorPolicy NONE

Introduction

In this page you can find the example usage for com.intellij.openapi.fileEditor FileEditorPolicy NONE.

Prototype

FileEditorPolicy NONE

To view the source code for com.intellij.openapi.fileEditor FileEditorPolicy NONE.

Click Source Link

Document

No policy

Usage

From source file:net.nicoulaj.idea.markdown.editor.MarkdownPreviewEditorProvider.java

License:Apache License

/**
 * Get the {@link FileEditorPolicy} defining how to show editors created via the {@link FileEditorProvider}.
 *
 * @return {@link FileEditorPolicy#NONE}
 *//*from w w w . j a va2s  .c  om*/
@NotNull
public FileEditorPolicy getPolicy() {
    return FileEditorPolicy.NONE;
}