blob: 7beb362fad20da0131d1636b9f9167c4823864df [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015 RCP Vision (http://www.rcp-vision.com) and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Vincenzo Caselli - Initial contribution and API
*
*******************************************************************************/
package org.eclipse.swt.layout;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Layout;
public final class GridLayout extends Layout {
public GridLayout() {
}
public GridLayout(int numColumns, boolean makeColumnsEqualWidth) {
}
@Override
protected void layout(Composite composite, boolean flushCache) {
}
}