blob: b816e487f5aab395f5eff3f8ccf95c127c8a1946 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011-2015 EclipseSource Muenchen GmbH 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:
* johannes - initial API and implementation
******************************************************************************/
package org.eclipse.emfforms.spi.swt.table;
import org.eclipse.jface.viewers.TableViewer;
import org.eclipse.swt.widgets.Composite;
/**
* The {@link TableViewerCreator} is used to create a {@link TableViewer} on a parent composite.
*
* @author Johanens Faltermeier
*
*/
public interface TableViewerCreator {
/**
* Creates the {@link TableViewer}.
*
* @param parent the parent {@link Composite}
* @return the viewer
*/
TableViewer createTableViewer(Composite parent);
}