Java Code Examples for com.intellij.openapi.options.colors.ColorDescriptor#EMPTY_ARRAY

The following examples show how to use com.intellij.openapi.options.colors.ColorDescriptor#EMPTY_ARRAY . 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: LocalSarosAnnotationColorsPage.java    From saros with GNU General Public License v2.0 4 votes vote down vote up
@NotNull
@Override
public ColorDescriptor[] getColorDescriptors() {
  return ColorDescriptor.EMPTY_ARRAY;
}
 
Example 2
Source File: BashColorsAndFontsPage.java    From BashSupport with Apache License 2.0 4 votes vote down vote up
@NotNull
public ColorDescriptor[] getColorDescriptors() {
    return ColorDescriptor.EMPTY_ARRAY;
}
 
Example 3
Source File: CabalColorSettingsPage.java    From intellij-haskforce with Apache License 2.0 4 votes vote down vote up
@NotNull
@Override
public ColorDescriptor[] getColorDescriptors() {
    return ColorDescriptor.EMPTY_ARRAY;
}
 
Example 4
Source File: SQFColorSettingsPage.java    From arma-intellij-plugin with MIT License 4 votes vote down vote up
@NotNull
@Override
public ColorDescriptor[] getColorDescriptors() {
	return ColorDescriptor.EMPTY_ARRAY;
}
 
Example 5
Source File: BuckColorSettingsPage.java    From Buck-IntelliJ-Plugin with Apache License 2.0 4 votes vote down vote up
@NotNull
@Override
public ColorDescriptor[] getColorDescriptors() {
  return ColorDescriptor.EMPTY_ARRAY;
}
 
Example 6
Source File: GraphQLColorSettingsPage.java    From js-graphql-intellij-plugin with MIT License 4 votes vote down vote up
@NotNull
@Override
public ColorDescriptor[] getColorDescriptors() {
  return ColorDescriptor.EMPTY_ARRAY;
}
 
Example 7
Source File: BuildColorsPage.java    From intellij with Apache License 2.0 4 votes vote down vote up
@Override
public ColorDescriptor[] getColorDescriptors() {
  return ColorDescriptor.EMPTY_ARRAY;
}
 
Example 8
Source File: ConceptColorSettingsPage.java    From Intellij-Plugin with Apache License 2.0 4 votes vote down vote up
@NotNull
@Override
public ColorDescriptor[] getColorDescriptors() {
    return ColorDescriptor.EMPTY_ARRAY;
}
 
Example 9
Source File: ElmColorSettingsPage.java    From elm-plugin with MIT License 4 votes vote down vote up
@NotNull
@Override
public ColorDescriptor[] getColorDescriptors() {
    return ColorDescriptor.EMPTY_ARRAY;
}
 
Example 10
Source File: BuckColorSettingsPage.java    From buck with Apache License 2.0 4 votes vote down vote up
@Override
public ColorDescriptor[] getColorDescriptors() {
  return ColorDescriptor.EMPTY_ARRAY;
}
 
Example 11
Source File: TSColorSettings.java    From Custom-Syntax-Highlighter with MIT License 4 votes vote down vote up
@NotNull
@Override
public ColorDescriptor[] getColorDescriptors() {
  return ColorDescriptor.EMPTY_ARRAY;
}
 
Example 12
Source File: CSharpColorSettingsPage.java    From consulo-csharp with Apache License 2.0 4 votes vote down vote up
@Nonnull
@Override
public ColorDescriptor[] getColorDescriptors()
{
	return ColorDescriptor.EMPTY_ARRAY;
}
 
Example 13
Source File: FlutterLogColorPage.java    From flutter-intellij with BSD 3-Clause "New" or "Revised" License 4 votes vote down vote up
@Override
@NotNull
public ColorDescriptor[] getColorDescriptors() {
  return ColorDescriptor.EMPTY_ARRAY;
}
 
Example 14
Source File: HaskellColorSettingsPage.java    From intellij-haskforce with Apache License 2.0 4 votes vote down vote up
@NotNull
@Override
public ColorDescriptor[] getColorDescriptors() {
    return ColorDescriptor.EMPTY_ARRAY;
}
 
Example 15
Source File: SoyColorSettingsPage.java    From bamboo-soy with Apache License 2.0 4 votes vote down vote up
@NotNull
@Override
public ColorDescriptor[] getColorDescriptors() {
  return ColorDescriptor.EMPTY_ARRAY;
}
 
Example 16
Source File: HaxeColorSettingsPage.java    From intellij-haxe with Apache License 2.0 4 votes vote down vote up
@NotNull
@Override
public ColorDescriptor[] getColorDescriptors() {
  return ColorDescriptor.EMPTY_ARRAY;
}
 
Example 17
Source File: ReasonColorSettingsPage.java    From reasonml-idea-plugin with MIT License 4 votes vote down vote up
@NotNull
@Override
public ColorDescriptor[] getColorDescriptors() {
    return ColorDescriptor.EMPTY_ARRAY;
}
 
Example 18
Source File: DuneColorSettingsPage.java    From reasonml-idea-plugin with MIT License 4 votes vote down vote up
@NotNull
@Override
public ColorDescriptor[] getColorDescriptors() {
    return ColorDescriptor.EMPTY_ARRAY;
}
 
Example 19
Source File: XQueryColorSettingsPage.java    From intellij-xquery with Apache License 2.0 4 votes vote down vote up
@NotNull
@Override
public ColorDescriptor[] getColorDescriptors() {
    return ColorDescriptor.EMPTY_ARRAY;
}
 
Example 20
Source File: SpecColorSettingsPage.java    From Intellij-Plugin with Apache License 2.0 4 votes vote down vote up
@NotNull
@Override
public ColorDescriptor[] getColorDescriptors() {
    return ColorDescriptor.EMPTY_ARRAY;
}