diff options
author | Sami Ekblad <sami@vaadin.com> | 2013-06-28 16:23:14 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2013-06-28 13:36:14 +0000 |
commit | b421d6e6a7841f370bf32f9d1f394b12bf905951 (patch) | |
tree | 5150ce9a1493214912b44480c800950b14e68661 /server/src/com/vaadin/ui | |
parent | 170205908d72e51ba447daabbc8b2323c119a97e (diff) | |
download | vaadin-framework-b421d6e6a7841f370bf32f9d1f394b12bf905951.tar.gz vaadin-framework-b421d6e6a7841f370bf32f9d1f394b12bf905951.zip |
Updated Javadoc for Table.getColumnAlignment fixing #6810
Change-Id: I05004cb874f5c32c03d28119d0522d3184a82292
Diffstat (limited to 'server/src/com/vaadin/ui')
-rw-r--r-- | server/src/com/vaadin/ui/Table.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/server/src/com/vaadin/ui/Table.java b/server/src/com/vaadin/ui/Table.java index b5606b4e67..0fb6197c3e 100644 --- a/server/src/com/vaadin/ui/Table.java +++ b/server/src/com/vaadin/ui/Table.java @@ -1251,7 +1251,8 @@ public class Table extends AbstractSelect implements Action.Container, * * @param propertyId * the propertyID identifying the column. - * @return the specified column's alignment if it as one; null otherwise. + * @return the specified column's alignment if it as one; {@link Align#LEFT} + * otherwise. */ public Align getColumnAlignment(Object propertyId) { final Align a = columnAlignments.get(propertyId); |