Package org.eclipse.uml2.uml.profile.standard

Examples of org.eclipse.uml2.uml.profile.standard.Trace.eClass()


      while(itDep.hasNext()) {
        DirectedRelationship currentDRelationship = itDep.next();
        currentTrace = UMLUtil.getStereotypeApplication(currentDRelationship, Trace.class);

        // Must be a Trace not a subtype (see bug #352563).
        if((currentTrace != null) && (currentTrace.eClass() == StandardPackage.eINSTANCE.getTrace())) {
          EList<NamedElement> clients = currentTrace.getBase_Abstraction().getSuppliers();
          Iterator<NamedElement> it = clients.iterator();
          while(it.hasNext()) {
            Requirement currentRequirement = UMLUtil.getStereotypeApplication(it.next(), Requirement.class);
            if(currentRequirement != null) {
View Full Code Here


      while(itDep.hasNext()) {
        DirectedRelationship currentDR = itDep.next();
        currentTrace = UMLUtil.getStereotypeApplication(currentDR, Trace.class);

        // Must be a Trace not a subtype (see bug #352563).
        if((currentTrace != null) && (currentTrace.eClass() == StandardPackage.eINSTANCE.getTrace())) {
          EList<NamedElement> suppliers = currentTrace.getBase_Abstraction().getClients();
          tracedTo.addAll(suppliers);
        }
      }
    }
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.