blob: 8d369f60760f987f4e91e46b8e8b5c2427d305f5 [file] [log] [blame]
//------------------------------------------------------------------------------
// Copyright (c) 2005, 2006 IBM Corporation 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:
// IBM Corporation - initial implementation
//------------------------------------------------------------------------------
package org.eclipse.epf.authoring.ui.views;
import org.eclipse.swt.widgets.Composite;
/**
* Displays the Process elements in a tree table viewer.
*
* @author Phong Nguyen Le
* @since 1.0
*/
public class ProcessViewer extends ProcessTreeViewer {
/**
* Creates a new instance.
*/
public ProcessViewer(Composite parent, int style) {
super(parent, style);
}
/**
* @return the underlying Tree
*/
public Composite getCellEditorParent() {
return getTree();
}
}