選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

ContainerResizedListener.java 611B

12345678910111213141516
  1. package com.itmill.toolkit.terminal.gwt.client;
  2. /**
  3. * ContainerResizedListener interface is useful for Widgets that support
  4. * relative sizes and who need some additional sizing logic.
  5. */
  6. public interface ContainerResizedListener {
  7. /**
  8. * This function is run when container box has been resized. Object
  9. * implementing ContainerResizedListener is responsible to call the same
  10. * function on its ancestors that implement NeedsLayout in case their
  11. * container has resized. runAnchestorsLayout(HasWidgets parent) function
  12. * from Util class may be a good helper for this.
  13. */
  14. public void iLayout();
  15. }