blob: f6f04932be3b0cc16dcdda8e9f2bbec1b9db24f8 [file] [log] [blame]
/*
* Copyright (c) 2010 Artem Tikhomirov 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:
* Artem Tikhomirov (independent) - initial API and implementation
*/
package org.eclipse.gmf.internal.codegen.util;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.EcorePackage;
/**
* @author artem
*/
public class Extras {
/**
* This is a handy way to deal with EMF 2.6 M4 change (see bug #255469) - EObject is implicit
* superclass for any EClass, but EMF itself doesn't answer this question when asked on a metamodel level
* @return true if the first candidate class is supertype of the second, with respect of implicit EObject supertype of any other EClass.
*/
public static boolean isSuperTypeOf(EClass superclassCandidate, EClass subclassCandidate) {
return superclassCandidate.isSuperTypeOf(subclassCandidate) || superclassCandidate == EcorePackage.eINSTANCE.getEObject() || ("EObject".equals(superclassCandidate.getName()) && EcorePackage.eNS_URI.equals(superclassCandidate.getEPackage().getNsURI()));
}
}