Package com.alee.extended.layout

Examples of com.alee.extended.layout.GroupLayout


     * @param horizontal   layout orientation
     * @param components   components to place
     */
    public GroupPanel ( final GroupingType groupingType, final int gap, final boolean horizontal, final Component... components )
    {
        super ( new GroupLayout ( horizontal ? GroupLayout.HORIZONTAL : GroupLayout.VERTICAL, gap ) );
        setOpaque ( false );

        // Placing components
        for ( int i = 0; i < components.length; i++ )
        {
View Full Code Here

TOP

Related Classes of com.alee.extended.layout.GroupLayout

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.