Package com.google.gdt.eclipse.designer.model.widgets

Examples of com.google.gdt.eclipse.designer.model.widgets.IUIObjectSizeSupport


    }
    // command
    m_command = new EditCommand(m_object) {
      @Override
      protected void executeEdit() throws Exception {
        IUIObjectSizeSupport sizeSupport = m_object.getSizeSupport();
        if (m_resizeDirection == IPositionConstants.EAST) {
          sizeSupport.setSize(newWidth, null);
        } else if (m_resizeDirection == IPositionConstants.SOUTH) {
          sizeSupport.setSize(null, newHeight);
        } else {
          sizeSupport.setSize(newWidth, newHeight);
        }
      }
    };
  }
View Full Code Here

TOP

Related Classes of com.google.gdt.eclipse.designer.model.widgets.IUIObjectSizeSupport

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.