List of usage examples for java.awt LayoutManager2 interface-usage
From source file GraphPaperLayout.java
/**
* The <code>GraphPaperLayout</code> class is a layout manager that lays out a
* container's components in a rectangular grid, similar to GridLayout. Unlike
* GridLayout, however, components can take up multiple rows and/or columns. The
* layout manager acts as a sheet of graph paper. When a component is added to
* the layout manager, the location and relative size of the component are
From source file TableLayout.java
/**
* A LayoutManager which lays out the components in a table-like structure.
* Unlike <code>GridLayout</code>, the sizes of the rows and columns
* are dynamic, although properly aligned. The cell sizes are determined
* according to the preferred sizes of the components and each component is
* sized to either its maximum size or the cell size. Components are positioned
From source file fxts.stations.ui.SideLayout.java
/**
* The <code>SideLayout</code> class is a flexible layout
* manager that aligns components vertically and horizontally,
* without requiring that the components be of the same size.
* Each <code>SideLayout</code> object maintains a dynamic,
* rectangular grid of cells, with each component occupying
From source file org.kineticsystem.commons.layout.TetrisLayout.java
/** * Tetris layout. * @author Giovanni Remigi * $Revision: 148 $ */ public class TetrisLayout implements LayoutManager2 {
From source file GraphPaperTest.java
/**
* The <code>GraphPaperLayout</code> class is a layout manager that lays out a
* container's components in a rectangular grid, similar to GridLayout. Unlike
* GridLayout, however, components can take up multiple rows and/or columns. The
* layout manager acts as a sheet of graph paper. When a component is added to
* the layout manager, the location and relative size of the component are