Package com.alee.extended.layout

Examples of com.alee.extended.layout.OverlayData


        return component;
    }

    public void addOverlay ( Component overlay )
    {
        overlayData.put ( overlay, new OverlayData () );
        add ( overlay, OverlayLayout.OVERLAY, 0 );
    }
View Full Code Here


        add ( overlay, OverlayLayout.OVERLAY, 0 );
    }

    public void addOverlay ( Component overlay, int halign, int valign )
    {
        overlayData.put ( overlay, new OverlayData ( halign, valign ) );
        add ( overlay, OverlayLayout.OVERLAY, 0 );
    }
View Full Code Here

        add ( overlay, OverlayLayout.OVERLAY, 0 );
    }

    public void addOverlay ( Component overlay, DataProvider<Rectangle> rectangleProvider )
    {
        overlayData.put ( overlay, new OverlayData ( rectangleProvider ) );
        add ( overlay, OverlayLayout.OVERLAY, 0 );
    }
View Full Code Here

TOP

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

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.