Package org.xvr.s3D

Examples of org.xvr.s3D.statement


   * <!-- end-user-doc -->
   * @generated
   */
  public NotificationChain basicSetHead(statement newHead, NotificationChain msgs)
  {
    statement oldHead = head;
    head = newHead;
    if (eNotificationRequired())
    {
      ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, S3DPackage.STATEMENT_LIST__HEAD, oldHead, newHead);
      if (msgs == null) msgs = notification; else msgs.add(notification);
View Full Code Here


   * <!-- end-user-doc -->
   * @generated
   */
  public NotificationChain basicSetWhileStm(statement newWhileStm, NotificationChain msgs)
  {
    statement oldWhileStm = whileStm;
    whileStm = newWhileStm;
    if (eNotificationRequired())
    {
      ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, S3DPackage.WHILE_STATEMENT__WHILE_STM, oldWhileStm, newWhileStm);
      if (msgs == null) msgs = notification; else msgs.add(notification);
View Full Code Here

   * <!-- end-user-doc -->
   * @generated
   */
  public NotificationChain basicSetForEachStm(statement newForEachStm, NotificationChain msgs)
  {
    statement oldForEachStm = forEachStm;
    forEachStm = newForEachStm;
    if (eNotificationRequired())
    {
      ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, S3DPackage.EXPRESSION__FOR_EACH_STM, oldForEachStm, newForEachStm);
      if (msgs == null) msgs = notification; else msgs.add(notification);
View Full Code Here

   * <!-- end-user-doc -->
   * @generated
   */
  public NotificationChain basicSetThenStm(statement newThenStm, NotificationChain msgs)
  {
    statement oldThenStm = thenStm;
    thenStm = newThenStm;
    if (eNotificationRequired())
    {
      ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, S3DPackage.BOOL_EXPRESSION__THEN_STM, oldThenStm, newThenStm);
      if (msgs == null) msgs = notification; else msgs.add(notification);
View Full Code Here

   * <!-- end-user-doc -->
   * @generated
   */
  public NotificationChain basicSetElseStm(statement newElseStm, NotificationChain msgs)
  {
    statement oldElseStm = elseStm;
    elseStm = newElseStm;
    if (eNotificationRequired())
    {
      ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, S3DPackage.BOOL_EXPRESSION__ELSE_STM, oldElseStm, newElseStm);
      if (msgs == null) msgs = notification; else msgs.add(notification);
View Full Code Here

   * <!-- end-user-doc -->
   * @generated
   */
  public NotificationChain basicSetForStm(statement newForStm, NotificationChain msgs)
  {
    statement oldForStm = forStm;
    forStm = newForStm;
    if (eNotificationRequired())
    {
      ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, S3DPackage.FOR_STATEMENT__FOR_STM, oldForStm, newForStm);
      if (msgs == null) msgs = notification; else msgs.add(notification);
View Full Code Here

TOP

Related Classes of org.xvr.s3D.statement

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.