Package org.eclipse.wb.core.model.broadcast

Examples of org.eclipse.wb.core.model.broadcast.ObjectInfoAllProperties


  //
  // Location properties
  //
  ////////////////////////////////////////////////////////////////////////////
  private void addLocationProperties() {
    addBroadcastListener(new ObjectInfoAllProperties() {
      public void invoke(ObjectInfo object, List<Property> properties) throws Exception {
        if (object instanceof WidgetInfo && object.getParent() == LayoutPanelInfo.this) {
          WidgetInfo widget = (WidgetInfo) object;
          addLocationProperties(properties, widget, true, "Anchor H");
          addLocationProperties(properties, widget, false, "Anchor V");
View Full Code Here


  //
  // Location properties
  //
  ////////////////////////////////////////////////////////////////////////////
  private void addLocationProperties() {
    addBroadcastListener(new ObjectInfoAllProperties() {
      public void invoke(ObjectInfo object, List<Property> properties) throws Exception {
        if (object instanceof WidgetInfo && object.getParent() == LayoutPanelInfo.this) {
          WidgetInfo widget = (WidgetInfo) object;
          addLocationProperties(properties, widget, true, "Anchor H");
          addLocationProperties(properties, widget, false, "Anchor V");
View Full Code Here

TOP

Related Classes of org.eclipse.wb.core.model.broadcast.ObjectInfoAllProperties

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.