Skip to content

Package: TableRendererViewerActionContext

TableRendererViewerActionContext

Coverage

1: /*******************************************************************************
2: * Copyright (c) 2011-2018 EclipseSource Muenchen GmbH and others.
3: *
4: * All rights reserved. This program and the accompanying materials
5: * are made available under the terms of the Eclipse Public License 2.0
6: * which accompanies this distribution, and is available at
7: * https://www.eclipse.org/legal/epl-2.0/
8: *
9: * SPDX-License-Identifier: EPL-2.0
10: *
11: * Contributors:
12: * Mat Hansen - initial API and implementation
13: ******************************************************************************/
14: package org.eclipse.emf.ecp.view.spi.table.swt.action;
15:
16: import org.eclipse.emf.ecp.view.spi.table.model.VTableControl;
17: import org.eclipse.emfforms.spi.swt.table.action.ViewerActionContext;
18: import org.eclipse.jface.viewers.AbstractTableViewer;
19:
20: /**
21: * The concrete action context for the table renderer.
22: *
23: * @author Mat Hansen <mhansen@eclipsesource.com>
24: * @since 1.18
25: *
26: */
27: public interface TableRendererViewerActionContext extends ViewerActionContext<AbstractTableViewer> {
28:
29:         /**
30:          * Returns the {@link VTableControl}.
31:          *
32:          * @return the {@link VTableControl}
33:          */
34:         VTableControl getVElement();
35:
36: }