Example usage for com.intellij.openapi.ui DetailsComponent getContentGutter

List of usage examples for com.intellij.openapi.ui DetailsComponent getContentGutter

Introduction

In this page you can find the example usage for com.intellij.openapi.ui DetailsComponent getContentGutter.

Prototype

public JComponent getContentGutter() 

Source Link

Usage

From source file:com.android.tools.idea.gradle.variant.profiles.ProjectProfileSelectionDialog.java

License:Apache License

private static void removeEmptyBorder(@NotNull DetailsComponent details) {
    JComponent gutter = details.getContentGutter();
    for (Component child : gutter.getComponents()) {
        if (child instanceof Wrapper) {
            ((Wrapper) child).setBorder(null);
        }/* ww w  . ja  v a 2 s  . c  om*/
    }
}