blob: 939c1871b8b0a73ed16d06d30b9dd552b36e044a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 The University of York.
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* Dimitrios Kolovos - initial API and implementation
******************************************************************************/
package org.eclipse.epsilon.dt.epackageregistryexplorer;
import org.eclipse.emf.ecore.EClass;
public class SuperTypesDescriptor {
protected EClass eClass;
public SuperTypesDescriptor(EClass eClass) {
this.eClass = eClass;
}
public EClass getEClass() {
return eClass;
}
}