summaryrefslogtreecommitdiffstats
path: root/src/com/itmill/toolkit/ui/Select.java
diff options
context:
space:
mode:
authorArtur Signell <artur.signell@itmill.com>2009-01-02 14:40:19 +0000
committerArtur Signell <artur.signell@itmill.com>2009-01-02 14:40:19 +0000
commitd9a13c237889ba32830edb27ad34c4d9ea2f180b (patch)
treed1bda61bf6de5b5b3724eb99f2618861fb45abcb /src/com/itmill/toolkit/ui/Select.java
parent19636fc0509e45d3bcedf4d7ba92670fdea4630d (diff)
downloadvaadin-framework-d9a13c237889ba32830edb27ad34c4d9ea2f180b.tar.gz
vaadin-framework-d9a13c237889ba32830edb27ad34c4d9ea2f180b.zip
Cleaned up the whole project
svn changeset:6398/svn branch:trunk
Diffstat (limited to 'src/com/itmill/toolkit/ui/Select.java')
-rw-r--r--src/com/itmill/toolkit/ui/Select.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/com/itmill/toolkit/ui/Select.java b/src/com/itmill/toolkit/ui/Select.java
index 48a1217fdd..a778155b75 100644
--- a/src/com/itmill/toolkit/ui/Select.java
+++ b/src/com/itmill/toolkit/ui/Select.java
@@ -86,6 +86,7 @@ public class Select extends AbstractSelect implements AbstractSelect.Filtering {
* @throws PaintException
* if the paint operation failed.
*/
+ @Override
public void paintContent(PaintTarget target) throws PaintException {
if (isMultiSelect()) {
// background compatibility hack. This object shouldn't be used for
@@ -326,6 +327,7 @@ public class Select extends AbstractSelect implements AbstractSelect.Filtering {
* @see com.itmill.toolkit.ui.AbstractComponent#changeVariables(java.lang.Object,
* java.util.Map)
*/
+ @Override
public void changeVariables(Object source, Map variables) {
// Selection change
@@ -406,6 +408,7 @@ public class Select extends AbstractSelect implements AbstractSelect.Filtering {
}
+ @Override
public void requestRepaint() {
super.requestRepaint();
optionRequest = false;
@@ -422,6 +425,7 @@ public class Select extends AbstractSelect implements AbstractSelect.Filtering {
*
* @return the Component UIDL tag as string.
*/
+ @Override
public String getTag() {
return "select";
}
@@ -447,6 +451,7 @@ public class Select extends AbstractSelect implements AbstractSelect.Filtering {
* @param columns
* the number of columns to set.
*/
+ @Deprecated
public void setColumns(int columns) {
if (columns < 0) {
columns = 0;
@@ -462,6 +467,7 @@ public class Select extends AbstractSelect implements AbstractSelect.Filtering {
* @deprecated see setter function
* @return
*/
+ @Deprecated
public int getColumns() {
return columns;
}