Package org.eclipse.emf.ecore

Examples of org.eclipse.emf.ecore.EClass.eResource()


    if (selection instanceof IStructuredSelection) {
      IStructuredSelection sel = (IStructuredSelection) selection;
      Object el = sel.getFirstElement();
      if (el instanceof EClass) {
        EClass eclass = (EClass) el;
        String platformString = eclass.eResource().getURI().toPlatformString(true);
        Path path = new Path(platformString);
        IFile file = ResourcesPlugin.getWorkspace().getRoot().getFile(path);
        if (file == null) {
          return;
        }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.