Package org.eclipse.papyrus.sysml.requirements

Examples of org.eclipse.papyrus.sysml.requirements.Requirement


        if(currentDeriveReqt != null) {
          EList<NamedElement> suppliers = currentDeriveReqt.getBase_Abstraction().getSuppliers();
          Iterator<NamedElement> it = suppliers.iterator();
          while(it.hasNext()) {
            Requirement currentRequirement = UMLUtil.getStereotypeApplication(it.next(), Requirement.class);
            if(currentRequirement != null) {
              derivedFrom.add(currentRequirement);
            }
          }
        }
View Full Code Here


   * <!-- begin-user-doc --> <!-- end-user-doc -->
   *
   * @generated
   */
  public Requirement getMaster() {
    Requirement master = basicGetMaster();
    return master != null && master.eIsProxy() ? (Requirement)eResolveProxy((InternalEObject)master) : master;
  }
View Full Code Here

        if(currentVerify != null) {
          EList<NamedElement> suppliers = currentVerify.getBase_Abstraction().getSuppliers();
          Iterator<NamedElement> it = suppliers.iterator();
          while(it.hasNext()) {
            Requirement currentRequirement = UMLUtil.getStereotypeApplication(it.next(), Requirement.class);
            if(currentRequirement != null) {
              verifies.add(currentRequirement);
            }
          }
        }
View Full Code Here

TOP

Related Classes of org.eclipse.papyrus.sysml.requirements.Requirement

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.