Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: b4f854356d73683492686010240eb3f1f274a1d4 (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
/*******************************************************************************
 * Copyright (c) 2010, 2011 Mia-Software.
 * 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:
 *    Nicolas Bros (Mia-Software) - initial API and implementation
 *******************************************************************************/
package org.eclipse.gmt.modisco.infra.browser.editors.table;

import org.eclipse.emf.ecore.EObject;

public class TableElementWithContext extends TableElement {
	private final EObject context;

	public TableElementWithContext(final Object element, final EObject context) {
		super(element);
		this.context = context;
	}

	public EObject getContext() {
		return this.context;
	}
}

Back to the top