Package urban.kappa

Examples of urban.kappa.ValueCalc


   * <!-- end-user-doc -->
   * @generated
   */
  public NotificationChain basicSetRhs(ValueCalc newRhs, NotificationChain msgs)
  {
    ValueCalc oldRhs = rhs;
    rhs = newRhs;
    if (eNotificationRequired())
    {
      ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, KappaPackage.ATOM__RHS, oldRhs, newRhs);
      if (msgs == null) msgs = notification; else msgs.add(notification);
View Full Code Here


   * <!-- end-user-doc -->
   * @generated
   */
  public NotificationChain basicSetExp(ValueCalc newExp, NotificationChain msgs)
  {
    ValueCalc oldExp = exp;
    exp = newExp;
    if (eNotificationRequired())
    {
      ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, KappaPackage.ATOM__EXP, oldExp, newExp);
      if (msgs == null) msgs = notification; else msgs.add(notification);
View Full Code Here

        if (result == null) result = defaultCase(theEObject);
        return result;
      }
      case KappaPackage.VALUE_CALC:
      {
        ValueCalc valueCalc = (ValueCalc)theEObject;
        T result = caseValueCalc(valueCalc);
        if (result == null) result = defaultCase(theEObject);
        return result;
      }
      case KappaPackage.ATOM:
View Full Code Here

   * <!-- end-user-doc -->
   * @generated
   */
  public NotificationChain basicSetValue(ValueCalc newValue, NotificationChain msgs)
  {
    ValueCalc oldValue = value;
    value = newValue;
    if (eNotificationRequired())
    {
      ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, KappaPackage.ASSIGNMENT__VALUE, oldValue, newValue);
      if (msgs == null) msgs = notification; else msgs.add(notification);
View Full Code Here

   * <!-- end-user-doc -->
   * @generated
   */
  public NotificationChain basicSetLhs(ValueCalc newLhs, NotificationChain msgs)
  {
    ValueCalc oldLhs = lhs;
    lhs = newLhs;
    if (eNotificationRequired())
    {
      ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, KappaPackage.CONCENTRATION__LHS, oldLhs, newLhs);
      if (msgs == null) msgs = notification; else msgs.add(notification);
View Full Code Here

   * <!-- end-user-doc -->
   * @generated
   */
  public NotificationChain basicSetRhs(ValueCalc newRhs, NotificationChain msgs)
  {
    ValueCalc oldRhs = rhs;
    rhs = newRhs;
    if (eNotificationRequired())
    {
      ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, KappaPackage.CONCENTRATION__RHS, oldRhs, newRhs);
      if (msgs == null) msgs = notification; else msgs.add(notification);
View Full Code Here

TOP

Related Classes of urban.kappa.ValueCalc

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.