]> source.dussan.org Git - vaadin-framework.git/commitdiff
AlignmentHandler & SpacingHandler should not extend Layout
authorArtur Signell <artur.signell@itmill.com>
Mon, 22 Dec 2008 08:27:19 +0000 (08:27 +0000)
committerArtur Signell <artur.signell@itmill.com>
Mon, 22 Dec 2008 08:27:19 +0000 (08:27 +0000)
svn changeset:6321/svn branch:trunk

src/com/itmill/toolkit/ui/Layout.java

index deb72fcd91fbb34229e87d2e330e47be127d1fd4..bd26e6822e386bf3595367cf3ee6739a5430d90f 100644 (file)
@@ -47,7 +47,7 @@ public interface Layout extends ComponentContainer {
     /**
      * TODO make javadocs, remove from implementing classes
      */
-    public interface AlignmentHandler extends Layout {
+    public interface AlignmentHandler {
 
         /**
          * Contained component should be aligned horizontally to the left.
@@ -109,7 +109,7 @@ public interface Layout extends ComponentContainer {
      * 
      * TODO refine javadocs
      */
-    public interface SpacingHandler extends Layout {
+    public interface SpacingHandler {
         /**
          * Enable spacing between child components within this layout.
          * 
@@ -147,7 +147,8 @@ public interface Layout extends ComponentContainer {
          * layout.
          * </p>
          * 
-         * @param marginInfo MarginInfo object containing the new margins.
+         * @param marginInfo
+         *            MarginInfo object containing the new margins.
          */
         public void setMargin(MarginInfo marginInfo);