Example usage for java.awt GridBagLayout getLayoutOrigin

List of usage examples for java.awt GridBagLayout getLayoutOrigin

Introduction

In this page you can find the example usage for java.awt GridBagLayout getLayoutOrigin.

Prototype

public Point getLayoutOrigin() 

Source Link

Document

Determines the origin of the layout area, in the graphics coordinate space of the target container.

Usage

From source file:org.eclipse.wb.internal.swing.model.layout.gbl.GridBagLayoutInfo.java

@Override
protected Point getLayoutOrigin() throws Exception {
    GridBagLayout layout = (GridBagLayout) getObject();
    return layout.getLayoutOrigin();
}