Package org.tuba.editorinterface

Examples of org.tuba.editorinterface.ArtefactLocation


    String providerID = artefactProvider.getProviderID();
    for (ITransmissionData data : transmittedData) {
      String artefactId = artefactProvider.getArtefactId(data);
      if (artefactId != null)
        artefactLocations.add(new ArtefactLocation(providerID,
            artefactId));
    }

    ArtefactIntegrator ooIntegrator = new ArtefactIntegrator();
    try {
View Full Code Here


    List<ArtefactLocation> modelLocations = new ArrayList<ArtefactLocation>();

    for (TreeObject selection : view.getSelectedObjects()) {
      if (selection instanceof ModelTreeObject) {
        String modelID = ((ModelTreeObject) selection).getModelID();
        modelLocations.add(new ArtefactLocation(Activator.PLUGIN_ID,
            modelID));
      }
    }

    ArtefactIntegrator ooIntegrator = new ArtefactIntegrator();
View Full Code Here

    for (IRepositoryResource resource : resources) {
      for (IProvider provider : ExtensionManager.getInstance()
          .getProviders()) {
        String url = resource.getUrl();
        if (provider.match(url))
          modelLocations.add(new ArtefactLocation(provider
              .getRepositoryID(), url));
      }
    }

    ArtefactIntegrator ooIntegrator = new ArtefactIntegrator();
View Full Code Here

TOP

Related Classes of org.tuba.editorinterface.ArtefactLocation

Copyright © 2018 www.massapicom. 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.