Community
Participate
Working Groups
import org.eclipse.emf.ecore.EAttribute;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.EClassifier;
import org.eclipse.emf.ecore.EDataType;
import org.eclipse.emf.ecore.EEnum;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.ecore.EReference;
EClass subTypeEClass = (EClass) subType;
return superTypeEClass.isSuperTypeOf(subTypeEClass);
}
if (superType == EcorePackage.eINSTANCE.getEDataType() && subType instanceof EDataType) {
// special case because isSuperTypeOf doesn't handle it
return true;
return false;
// Update the Table
this.setInput(new TableInput(list, this.fTableInput.getEditingDomain()));
setInput(new TableInput(list, this.fTableInput.getEditingDomain()));
} finally {
this.fNatTable.setRedraw(true);