diff options
Diffstat (limited to 'server/src/main/java/com/vaadin/ui/TextField.java')
-rw-r--r-- | server/src/main/java/com/vaadin/ui/TextField.java | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/server/src/main/java/com/vaadin/ui/TextField.java b/server/src/main/java/com/vaadin/ui/TextField.java index af4fcf24d1..f8aaf1e8fc 100644 --- a/server/src/main/java/com/vaadin/ui/TextField.java +++ b/server/src/main/java/com/vaadin/ui/TextField.java @@ -1,12 +1,12 @@ /* * Copyright 2000-2014 Vaadin Ltd. - * + * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the @@ -26,7 +26,7 @@ import com.vaadin.ui.declarative.DesignContext; /** * A component for editing textual data that fits on a single line. For a * multi-line textarea, see the {@link TextArea} component. - * + * * @author Vaadin Ltd. */ @SuppressWarnings("serial") @@ -41,7 +41,7 @@ public class TextField extends AbstractTextField { /** * Constructs an empty <code>TextField</code> with given caption. - * + * * @param caption * the caption <code>String</code> for the editor. */ @@ -56,7 +56,7 @@ public class TextField extends AbstractTextField { * to a Property unless * {@link com.vaadin.data.Property.Viewer#setPropertyDataSource(Property)} * is called to bind it. - * + * * @param caption * the caption <code>String</code> for the editor. * @param value |