Example usage for com.intellij.openapi.ui OnePixelDivider OnePixelDivider

List of usage examples for com.intellij.openapi.ui OnePixelDivider OnePixelDivider

Introduction

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

Prototype

public OnePixelDivider(boolean vertical, Splittable splitter) 

Source Link

Usage

From source file:com.intellij.ui.OnePixelSplitter.java

License:Apache License

@Override
protected Divider createDivider() {
    return new OnePixelDivider(isVertical(), this);
}

From source file:com.intellij.ui.tabs.impl.TabsSideSplitter.java

License:Apache License

TabsSideSplitter(@NotNull JBTabsImpl tabs) {
    myTabs = tabs;/*from ww  w . j a  va2 s  .  co  m*/
    //    myTabs.addPropertyChangeListener(JBTabsImpl.SIDE_TABS_SIZE_LIMIT_KEY.toString(), this);
    myDivider = new OnePixelDivider(false, this);
}