Package org.gwt.mosaic.ui.client.layout

Examples of org.gwt.mosaic.ui.client.layout.HasLayoutManager.invalidate()


    public void invalidate() {
      if (target instanceof Widget && !(target instanceof HasLayoutManager)) {
        HasLayoutManager lm = WidgetHelper.getParent((Widget) target);
        if (lm != null) {
          lm.invalidate();
        }
      }
    }

    public synchronized void removePropertyChangeListener(
View Full Code Here


    if (widget instanceof HasLayoutManager) {
      ((HasLayoutManager) widget).invalidate();
    } else {
      HasLayoutManager lm = getParent(widget);
      if (lm != null) {
        lm.invalidate();
      }
    }
  }

  /**
 
View Full Code Here

   * @see org.gwt.mosaic.ui.client.layout.HasLayoutManager#invalidate(com.google.gwt.user.client.ui.Widget)
   */
  public void invalidate(Widget widget) {
    final HasLayoutManager parent = WidgetHelper.getParent(this);
    if (parent != null) {
      parent.invalidate(null);
    }
  }

  /**
   * Returns whether the {@link WindowPanel} is the currently "selected" or
View Full Code Here

    if (widget instanceof HasLayoutManager) {
      ((HasLayoutManager) widget).invalidate(null);
    } else {
      HasLayoutManager lm = getParent(widget);
      if (lm != null) {
        lm.invalidate(widget);
      }
    }
  }

  /**
 
View Full Code Here

    public void invalidate() {
      if (target instanceof Widget && !(target instanceof HasLayoutManager)) {
        HasLayoutManager lm = WidgetHelper.getParent((Widget) target);
        if (lm != null) {
          lm.invalidate((Widget) target);
        }
      }
    }

    public synchronized void removePropertyChangeListener(
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.