Example usage for com.google.gwt.user.client.ui SplitLayoutPanel forceLayout

List of usage examples for com.google.gwt.user.client.ui SplitLayoutPanel forceLayout

Introduction

In this page you can find the example usage for com.google.gwt.user.client.ui SplitLayoutPanel forceLayout.

Prototype

public void forceLayout() 

Source Link

Usage

From source file:org.eclipse.che.ide.part.WorkBenchPartControllerImpl.java

License:Open Source License

@Inject
public WorkBenchPartControllerImpl(@Assisted SplitLayoutPanel splitLayoutPanel, @Assisted SimplePanel widget) {
    this.splitLayoutPanel = splitLayoutPanel;
    this.widget = widget;

    splitLayoutPanel.setWidgetToggleDisplayAllowed(widget, true);
    splitLayoutPanel.setWidgetHidden(widget, true);
    splitLayoutPanel.forceLayout();
}