Examples of BehavioralFeature


Examples of org.eclipse.uml2.uml.BehavioralFeature

 
  public static Operation getEffectOperationForTransition(Transition in_oTransition) {
    Operation oRetValue = null;
    Behavior oBehavior = in_oTransition.getEffect();
    if(oBehavior instanceof FunctionBehavior) {
      BehavioralFeature oFeature = ((FunctionBehavior)oBehavior).getSpecification();
      if(oFeature instanceof Operation) {
        oRetValue = (Operation)oFeature;
      }
    }
    return oRetValue;
View Full Code Here

Examples of org.eclipse.uml2.uml.BehavioralFeature

  {
    // determine the effect of the transition - select their parameters for event
    Operation oTransitionEffect = null;
    if(in_oTransition.getEffect() != null &&
        in_oTransition.getEffect() instanceof FunctionBehavior) {
      BehavioralFeature oFeature = ((FunctionBehavior)in_oTransition.getEffect()).getSpecification();
      if(oFeature instanceof Operation) {
        oTransitionEffect = (Operation)oFeature;
      }
    }
   
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.