summaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/ui/AbstractOrderedLayout.java
diff options
context:
space:
mode:
authorArtur Signell <artur.signell@itmill.com>2010-10-05 09:27:23 +0000
committerArtur Signell <artur.signell@itmill.com>2010-10-05 09:27:23 +0000
commitf384748d47656ce76d1fde30f8c0d6f07fd3f91b (patch)
treef686772ac2ea6c993927f12d320af4ab2f8bca7a /src/com/vaadin/ui/AbstractOrderedLayout.java
parentef26a2bca16a26aed6df2f8bab37b3afc86d52cb (diff)
downloadvaadin-framework-f384748d47656ce76d1fde30f8c0d6f07fd3f91b.tar.gz
vaadin-framework-f384748d47656ce76d1fde30f8c0d6f07fd3f91b.zip
Fix for #5735 - Deprecate AlignmentUtils and methods that uses it
svn changeset:15406/svn branch:6.5
Diffstat (limited to 'src/com/vaadin/ui/AbstractOrderedLayout.java')
-rw-r--r--src/com/vaadin/ui/AbstractOrderedLayout.java12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/com/vaadin/ui/AbstractOrderedLayout.java b/src/com/vaadin/ui/AbstractOrderedLayout.java
index 517c363dc8..73ab2e81fd 100644
--- a/src/com/vaadin/ui/AbstractOrderedLayout.java
+++ b/src/com/vaadin/ui/AbstractOrderedLayout.java
@@ -324,6 +324,18 @@ public abstract class AbstractOrderedLayout extends AbstractLayout implements
return (ratio == null) ? 0 : ratio.floatValue();
}
+ /**
+ * Sets the component alignment using a short hand string notation.
+ *
+ * @deprecated Replaced by
+ * {@link #setComponentAlignment(Component, Alignment)}
+ *
+ * @param component
+ * A child component in this layout
+ * @param alignment
+ * A short hand notation described in {@link AlignmentUtils}
+ */
+ @Deprecated
public void setComponentAlignment(Component component, String alignment) {
AlignmentUtils.setComponentAlignment(this, component, alignment);
}