Package org.jbpm.ui.common.figure

Source Code of org.jbpm.ui.common.figure.CenteredFlowLayout

package org.jbpm.ui.common.figure;

import org.eclipse.draw2d.FlowLayout;
import org.eclipse.draw2d.IFigure;
import org.eclipse.draw2d.geometry.Rectangle;

public class CenteredFlowLayout extends FlowLayout {
 
    @Override
    protected void setBoundsOfChild(IFigure parent, IFigure child, Rectangle rect) {
        Rectangle copy = rect.getCopy();
        copy.y += (parent.getBounds().height - rect.height) / 2;
        super.setBoundsOfChild(parent, child, copy);
    }

}
TOP

Related Classes of org.jbpm.ui.common.figure.CenteredFlowLayout

TOP
Copyright © 2018 www.massapi.com. 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.