Java Code Examples for com.intellij.openapi.fileEditor.FileEditorState#INSTANCE

The following examples show how to use com.intellij.openapi.fileEditor.FileEditorState#INSTANCE . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: NoSqlDatabaseDataEditorProvider.java    From nosql4idea with Apache License 2.0 4 votes vote down vote up
@NotNull
@Override
public FileEditorState readState(@NotNull Element sourceElement, @NotNull Project project, @NotNull VirtualFile file) {
    return FileEditorState.INSTANCE;
}
 
Example 2
Source File: NoSqlDatabaseDataEditor.java    From nosql4idea with Apache License 2.0 4 votes vote down vote up
@NotNull
@Override
public FileEditorState getState(@NotNull FileEditorStateLevel level) {
    return FileEditorState.INSTANCE;
}
 
Example 3
Source File: CSharpAssemblyFileEditor.java    From consulo-csharp with Apache License 2.0 4 votes vote down vote up
@Nonnull
@Override
public FileEditorState getState(@Nonnull FileEditorStateLevel fileEditorStateLevel)
{
	return FileEditorState.INSTANCE;
}
 
Example 4
Source File: CSharpAssemblyFileEditorProvider.java    From consulo-csharp with Apache License 2.0 4 votes vote down vote up
@Nonnull
@Override
public FileEditorState readState(@Nonnull Element element, @Nonnull Project project, @Nonnull VirtualFile virtualFile)
{
	return FileEditorState.INSTANCE;
}
 
Example 5
Source File: SandFileEditorProvider.java    From consulo with Apache License 2.0 4 votes vote down vote up
@Nonnull
@Override
public FileEditorState readState(@Nonnull Element sourceElement, @Nonnull Project project, @Nonnull VirtualFile file) {
  return FileEditorState.INSTANCE;
}
 
Example 6
Source File: SandFileEditor.java    From consulo with Apache License 2.0 4 votes vote down vote up
@Nonnull
@Override
public FileEditorState getState(@Nonnull FileEditorStateLevel level) {
  return FileEditorState.INSTANCE;
}