Examples of CismodelNavigatorItem


Examples of net.cis.common.model.diagram.shipdevice.navigator.CismodelNavigatorItem

    if (diagram == null || diagram.eResource() == null) {
      return StructuredSelection.EMPTY;
    }
    IFile file = WorkspaceSynchronizer.getFile(diagram.eResource());
    if (file != null) {
      CismodelNavigatorItem item = new CismodelNavigatorItem(diagram,
          file, false);
      return new StructuredSelection(item);
    }
    return StructuredSelection.EMPTY;
  }
View Full Code Here

Examples of net.cis.common.model.diagram.shiptype.navigator.CismodelNavigatorItem

    if (diagram == null || diagram.eResource() == null) {
      return StructuredSelection.EMPTY;
    }
    IFile file = WorkspaceSynchronizer.getFile(diagram.eResource());
    if (file != null) {
      CismodelNavigatorItem item = new CismodelNavigatorItem(diagram,
          file, false);
      return new StructuredSelection(item);
    }
    return StructuredSelection.EMPTY;
  }
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.