You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Layout.java 1.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /* *************************************************************************
  2. IT Mill Toolkit
  3. Development of Browser User Intarfaces Made Easy
  4. Copyright (C) 2000-2006 IT Mill Ltd
  5. *************************************************************************
  6. This product is distributed under commercial license that can be found
  7. from the product package on license/license.txt. Use of this product might
  8. require purchasing a commercial license from IT Mill Ltd. For guidelines
  9. on usage, see license/licensing-guidelines.html
  10. *************************************************************************
  11. For more information, contact:
  12. IT Mill Ltd phone: +358 2 4802 7180
  13. Ruukinkatu 2-4 fax: +358 2 4802 7181
  14. 20540, Turku email: info@itmill.com
  15. Finland company www: www.itmill.com
  16. Primary source for information and releases: www.itmill.com
  17. ********************************************************************** */
  18. package com.itmill.toolkit.ui;
  19. /** Extension to the {@link ComponentContainer} interface which adds the
  20. * layouting control to the elements in the container. This is
  21. * required by the various layout components to enable them to place other
  22. * components in specific locations in the UI.
  23. *
  24. * @author IT Mill Ltd.
  25. * @version @VERSION@
  26. * @since 3.0
  27. */
  28. public interface Layout extends ComponentContainer {
  29. }