Example usage for com.intellij.openapi.options.colors ColorDescriptor EMPTY_ARRAY

List of usage examples for com.intellij.openapi.options.colors ColorDescriptor EMPTY_ARRAY

Introduction

In this page you can find the example usage for com.intellij.openapi.options.colors ColorDescriptor EMPTY_ARRAY.

Prototype

ColorDescriptor[] EMPTY_ARRAY

To view the source code for com.intellij.openapi.options.colors ColorDescriptor EMPTY_ARRAY.

Click Source Link

Usage

From source file:browsewordatcaret.BWACColorSettingsPage.java

License:Apache License

@NotNull
@Override
public ColorDescriptor[] getColorDescriptors() {
    return ColorDescriptor.EMPTY_ARRAY;
}

From source file:com.android.tools.idea.logcat.AndroidLogcatColorPage.java

License:Apache License

@Override
@NotNull
public ColorDescriptor[] getColorDescriptors() {
    return ColorDescriptor.EMPTY_ARRAY;
}

From source file:com.ansorgit.plugins.bash.editor.highlighting.BashColorsAndFontsPage.java

License:Apache License

@NotNull
public ColorDescriptor[] getColorDescriptors() {
    return ColorDescriptor.EMPTY_ARRAY;
}

From source file:com.facebook.buck.intellij.ideabuck.config.BuckColorSettingsPage.java

License:Apache License

@Override
public ColorDescriptor[] getColorDescriptors() {
    return ColorDescriptor.EMPTY_ARRAY;
}

From source file:com.goide.highlighting.GoColorsAndFontsPage.java

License:Apache License

@Override
@Nonnull
public ColorDescriptor[] getColorDescriptors() {
    return ColorDescriptor.EMPTY_ARRAY;
}

From source file:com.google.bamboo.soy.SoyColorSettingsPage.java

License:Apache License

@Nonnull
@Override
public ColorDescriptor[] getColorDescriptors() {
    return ColorDescriptor.EMPTY_ARRAY;
}

From source file:mobi.hsz.idea.gitignore.highlighter.IgnoreColorSettingsPage.java

License:Open Source License

/**
 * Returns the list of descriptors specifying the {@link com.intellij.openapi.editor.colors.ColorKey}
 * instances for which colors are specified in the page. For such color keys, the user can
 * choose only the background or foreground color.
 *
 * @return the list of color descriptors.
 *//*ww  w  .  jav  a 2  s. c o  m*/
@NotNull
@Override
public ColorDescriptor[] getColorDescriptors() {
    return ColorDescriptor.EMPTY_ARRAY;
}

From source file:uk.co.reecedunn.intellij.plugin.xquery.settings.ColorSettingsPage.java

License:Apache License

@Override
@SuppressWarnings("NullableProblems") // jacoco Code Coverage reports an unchecked branch when @NotNull is used.
public ColorDescriptor[] getColorDescriptors() {
    return ColorDescriptor.EMPTY_ARRAY;
}