aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2016-08-23 11:22:34 +0300
committerVaadin Code Review <review@vaadin.com>2016-08-23 09:00:11 +0000
commit77a5f855b9597de8208144bc4864fb628aaf84dd (patch)
treea2a68588b2967b88476e5750019d91d3d6d6e090
parenta6147df13f54ef64118269fdc035aea670e55de8 (diff)
downloadvaadin-framework-77a5f855b9597de8208144bc4864fb628aaf84dd.tar.gz
vaadin-framework-77a5f855b9597de8208144bc4864fb628aaf84dd.zip
Remove trailing whitespace
Change-Id: I697874595e9f70d606fe15037172b127915e4bfb
-rw-r--r--server/src/main/java/com/vaadin/data/BeanBinder.java28
-rw-r--r--server/src/main/java/com/vaadin/data/Binder.java4
-rw-r--r--server/src/main/java/com/vaadin/data/util/BeanUtil.java6
-rw-r--r--server/src/main/java/com/vaadin/data/validator/BeanValidator.java4
4 files changed, 21 insertions, 21 deletions
diff --git a/server/src/main/java/com/vaadin/data/BeanBinder.java b/server/src/main/java/com/vaadin/data/BeanBinder.java
index 214cb6781f..499ca22bd9 100644
--- a/server/src/main/java/com/vaadin/data/BeanBinder.java
+++ b/server/src/main/java/com/vaadin/data/BeanBinder.java
@@ -1,12 +1,12 @@
/*
* Copyright 2000-2016 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
@@ -36,12 +36,12 @@ import com.vaadin.ui.UI;
* that conform to the JavaBeans specification. Bean properties are bound by
* their names. If a JSR-303 bean validation implementation is present on the
* classpath, {@code BeanBinder} adds a {@link BeanValidator} to each binding.
- *
+ *
* @author Vaadin Ltd.
*
* @param <BEAN>
* the bean type
- *
+ *
* @since
*/
public class BeanBinder<BEAN> extends Binder<BEAN> {
@@ -103,15 +103,15 @@ public class BeanBinder<BEAN> extends Binder<BEAN> {
* The property must have an accessible getter method. It need not have
* an accessible setter; in that case the property value is never
* updated and the binding is said to be <i>read-only</i>.
- *
+ *
* @param propertyName
* the name of the property to bind, not null
- *
+ *
* @throws IllegalArgumentException
* if the property name is invalid
* @throws IllegalArgumentException
* if the property has no accessible getter
- *
+ *
* @see Binding#bind(Function, java.util.function.BiConsumer)
*/
public void bind(String propertyName);
@@ -119,7 +119,7 @@ public class BeanBinder<BEAN> extends Binder<BEAN> {
/**
* An internal implementation of {@link BeanBinding}.
- *
+ *
* @param <BEAN>
* the bean type
* @param <FIELDVALUE>
@@ -136,7 +136,7 @@ public class BeanBinder<BEAN> extends Binder<BEAN> {
/**
* Creates a new bean binding.
- *
+ *
* @param binder
* the binder this instance is connected to, not null
* @param field
@@ -262,7 +262,7 @@ public class BeanBinder<BEAN> extends Binder<BEAN> {
/**
* Creates a new {@code BeanBinder} supporting beans of the given type.
- *
+ *
* @param beanType
* the bean {@code Class} instance, not null
*/
@@ -289,19 +289,19 @@ public class BeanBinder<BEAN> extends Binder<BEAN> {
* The property must have an accessible getter method. It need not have an
* accessible setter; in that case the property value is never updated and
* the binding is said to be <i>read-only</i>.
- *
+ *
* @param <FIELDVALUE>
* the value type of the field to bind
* @param field
* the field to bind, not null
* @param propertyName
* the name of the property to bind, not null
- *
+ *
* @throws IllegalArgumentException
* if the property name is invalid
* @throws IllegalArgumentException
* if the property has no accessible getter
- *
+ *
* @see #bind(HasValue, java.util.function.Function,
* java.util.function.BiConsumer)
*/
diff --git a/server/src/main/java/com/vaadin/data/Binder.java b/server/src/main/java/com/vaadin/data/Binder.java
index c7c55bfe7e..a208ad841f 100644
--- a/server/src/main/java/com/vaadin/data/Binder.java
+++ b/server/src/main/java/com/vaadin/data/Binder.java
@@ -459,7 +459,7 @@ public class Binder<BEAN> implements Serializable {
/**
* Returns the {@code Binder} connected to this {@code Binding}
* instance.
- *
+ *
* @return the binder
*/
protected Binder<BEAN> getBinder() {
@@ -469,7 +469,7 @@ public class Binder<BEAN> implements Serializable {
/**
* Throws if this binding is already completed and cannot be modified
* anymore.
- *
+ *
* @throws IllegalStateException
* if this binding is already bound
*/
diff --git a/server/src/main/java/com/vaadin/data/util/BeanUtil.java b/server/src/main/java/com/vaadin/data/util/BeanUtil.java
index 375c449701..c2aae29629 100644
--- a/server/src/main/java/com/vaadin/data/util/BeanUtil.java
+++ b/server/src/main/java/com/vaadin/data/util/BeanUtil.java
@@ -52,7 +52,7 @@ public final class BeanUtil implements Serializable {
* <p>
* For interfaces, the iteration is depth first and the properties of
* superinterfaces are returned before those of their subinterfaces.
- *
+ *
* @param beanType
* the type whose properties to query
* @return a list of property descriptors of the given type
@@ -86,7 +86,7 @@ public final class BeanUtil implements Serializable {
* "property.subProperty" or "property.subProperty1.subProperty2". The
* property must have a public read method (or a chain of read methods in
* case of a nested property).
- *
+ *
* @param beanType
* the type declaring the property
* @param propertyName
@@ -113,7 +113,7 @@ public final class BeanUtil implements Serializable {
* "property.subProperty" or "property.subProperty1.subProperty2". The
* property must have a public read method (or a chain of read methods in
* case of a nested property).
- *
+ *
* @param beanType
* the type declaring the property
* @param propertyName
diff --git a/server/src/main/java/com/vaadin/data/validator/BeanValidator.java b/server/src/main/java/com/vaadin/data/validator/BeanValidator.java
index 3813797a63..76f7a958aa 100644
--- a/server/src/main/java/com/vaadin/data/validator/BeanValidator.java
+++ b/server/src/main/java/com/vaadin/data/validator/BeanValidator.java
@@ -42,7 +42,7 @@ import com.vaadin.data.Validator;
* <a href="http://bval.apache.org/">Apache BVal</a>) must be present on the
* project classpath when using bean validation. Specification versions 1.0 and
* 1.1 are supported.
- *
+ *
* @author Petri Hakala
* @author Vaadin Ltd.
*
@@ -63,7 +63,7 @@ public class BeanValidator implements Validator<Object> {
* a {@code BeanValidator} instance will throw an
* {@code IllegalStateException}. If an implementation is not found, logs a
* level {@code FINE} message the first time it is run.
- *
+ *
* @return {@code true} if bean validation is available, {@code false}
* otherwise.
*/