Package org.eclipse.wb.internal.core.model.nonvisual

Examples of org.eclipse.wb.internal.core.model.nonvisual.AbstractArrayObjectInfo.command_MOVE()


  }

  public void command_MOVE(DetailViewerFieldInfo moveField, DetailViewerFieldInfo referenceField)
      throws Exception {
    AbstractArrayObjectInfo arrayInfo = getFieldsArrayInfo();
    arrayInfo.command_MOVE(moveField, referenceField);
  }

  ////////////////////////////////////////////////////////////////////////////
  //
  // IObjectPropertyProcessor
View Full Code Here


  }

  public void command_MOVE(TreeGridFieldInfo moveField, TreeGridFieldInfo referenceField)
      throws Exception {
    AbstractArrayObjectInfo arrayInfo = getFieldsArrayInfo();
    arrayInfo.command_MOVE(moveField, referenceField);
  }
}
View Full Code Here

  }

  public void command_MOVE(ListGridFieldInfo moveField, ListGridFieldInfo referenceField)
      throws Exception {
    AbstractArrayObjectInfo arrayInfo = getFieldsArrayInfo();
    arrayInfo.command_MOVE(moveField, referenceField);
  }

  ////////////////////////////////////////////////////////////////////////////
  //
  // IObjectPropertyProcessor
View Full Code Here

  }

  public void command_MOVE(ListGridFieldInfo moveField, ListGridFieldInfo referenceField)
      throws Exception {
    AbstractArrayObjectInfo arrayInfo = getFieldsArrayInfo();
    arrayInfo.command_MOVE(moveField, referenceField);
  }

  ////////////////////////////////////////////////////////////////////////////
  //
  // IObjectPropertyProcessor
View Full Code Here

  }

  public void command_MOVE(DetailViewerFieldInfo moveField, DetailViewerFieldInfo referenceField)
      throws Exception {
    AbstractArrayObjectInfo arrayInfo = getFieldsArrayInfo();
    arrayInfo.command_MOVE(moveField, referenceField);
  }

  ////////////////////////////////////////////////////////////////////////////
  //
  // IObjectPropertyProcessor
View Full Code Here

    arrayInfo.command_CREATE(newItem, referenceItem);
  }

  public void command_MOVE(FormItemInfo moveItem, FormItemInfo referenceItem) throws Exception {
    AbstractArrayObjectInfo arrayInfo = getItemsArrayInfo();
    arrayInfo.command_MOVE(moveItem, referenceItem);
  }

  public void command_BOUNDS(FormItemInfo item, Point location, Dimension size) throws Exception {
    Assert.isTrue(getChildren().contains(item), "%s is not child of %s.", item, this);
    if (size != null) {
View Full Code Here

    arrayInfo.command_CREATE(newMenu, referenceMenu);
  }

  public void command_MOVE(MenuInfo moveMenu, MenuInfo referenceMenu) throws Exception {
    AbstractArrayObjectInfo arrayInfo = getMenusArrayInfo();
    arrayInfo.command_MOVE(moveMenu, referenceMenu);
  }
}
View Full Code Here

  }

  public void command_MOVE(StatefulCanvasInfo moveButton, StatefulCanvasInfo referenceButton)
      throws Exception {
    AbstractArrayObjectInfo arrayInfo = getButtonsArrayInfo();
    arrayInfo.command_MOVE(moveButton, referenceButton);
  }
}
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.