Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 4bb68c70344e90f793bd696c6e0d308b7899d898 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*******************************************************************************
 * Copyright (c) 2014 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:
 * Lorenzo Bettini - Initial contribution and API
 *******************************************************************************/
package org.eclipse.emf.parsley.views;

import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.parsley.config.Configurator;

import com.google.inject.Inject;

/**
 * This implements the abstract methods by delegating to an injected
 * {@link Configurator}.
 *
 * @author Lorenzo Bettini - Initial contribution and API
 *
 */
public class OnSelectionTableView extends AbstractOnSelectionTableView {

	@Inject
	private Configurator configurator;

	@Override
	protected EClass getEClass() {
		return configurator.getEClass(this);
	}

}

Back to the top