From 7c8f440781835dbcf72bfbc47ab8be2f669a40e4 Mon Sep 17 00:00:00 2001 From: Ahmed Ashour Date: Thu, 26 Oct 2017 12:07:51 +0200 Subject: Remove trailing spaces (#10224) --- .../vaadin/v7/data/util/sqlcontainer/ColumnProperty.java | 2 +- .../v7/ui/components/colorpicker/ColorChangeEvent.java | 8 ++++---- .../v7/ui/components/colorpicker/ColorChangeListener.java | 12 ++++++------ .../v7/ui/components/colorpicker/ColorPickerGradient.java | 14 +++++++------- .../vaadin/v7/ui/components/colorpicker/ColorSelector.java | 12 ++++++------ .../ui/components/colorpicker/HasColorChangeListener.java | 10 +++++----- 6 files changed, 29 insertions(+), 29 deletions(-) (limited to 'compatibility-server/src/main/java') diff --git a/compatibility-server/src/main/java/com/vaadin/v7/data/util/sqlcontainer/ColumnProperty.java b/compatibility-server/src/main/java/com/vaadin/v7/data/util/sqlcontainer/ColumnProperty.java index b6f9e37c22..7cac061f85 100644 --- a/compatibility-server/src/main/java/com/vaadin/v7/data/util/sqlcontainer/ColumnProperty.java +++ b/compatibility-server/src/main/java/com/vaadin/v7/data/util/sqlcontainer/ColumnProperty.java @@ -29,7 +29,7 @@ import com.vaadin.v7.data.util.converter.Converter.ConversionException; * * Note that depending on the QueryDelegate in use this does not necessarily map * into an actual column in a database table. - * + * * @deprecated As of 8.0, no replacement available. */ @Deprecated diff --git a/compatibility-server/src/main/java/com/vaadin/v7/ui/components/colorpicker/ColorChangeEvent.java b/compatibility-server/src/main/java/com/vaadin/v7/ui/components/colorpicker/ColorChangeEvent.java index db8331c539..78d326eb54 100644 --- a/compatibility-server/src/main/java/com/vaadin/v7/ui/components/colorpicker/ColorChangeEvent.java +++ b/compatibility-server/src/main/java/com/vaadin/v7/ui/components/colorpicker/ColorChangeEvent.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 @@ -22,7 +22,7 @@ import com.vaadin.v7.shared.ui.colorpicker.Color; /** * The color changed event which is passed to the listeners when a color change * occurs. - * + * * @since 7.0.0 */ @Deprecated diff --git a/compatibility-server/src/main/java/com/vaadin/v7/ui/components/colorpicker/ColorChangeListener.java b/compatibility-server/src/main/java/com/vaadin/v7/ui/components/colorpicker/ColorChangeListener.java index 6a32e173e2..db82bcd92d 100644 --- a/compatibility-server/src/main/java/com/vaadin/v7/ui/components/colorpicker/ColorChangeListener.java +++ b/compatibility-server/src/main/java/com/vaadin/v7/ui/components/colorpicker/ColorChangeListener.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 @@ -24,9 +24,9 @@ import java.io.Serializable; * component using the component's addColorChangeListener method. * When the colorChange event occurs, that object's appropriate method is * invoked. - * + * * @since 7.0.0 - * + * * @see ColorChangeEvent */ @Deprecated @@ -34,7 +34,7 @@ public interface ColorChangeListener extends Serializable { /** * Called when a new color has been selected. - * + * * @param event * An event containing information about the color change. */ diff --git a/compatibility-server/src/main/java/com/vaadin/v7/ui/components/colorpicker/ColorPickerGradient.java b/compatibility-server/src/main/java/com/vaadin/v7/ui/components/colorpicker/ColorPickerGradient.java index e479fe7ac8..b465e97f9a 100644 --- a/compatibility-server/src/main/java/com/vaadin/v7/ui/components/colorpicker/ColorPickerGradient.java +++ b/compatibility-server/src/main/java/com/vaadin/v7/ui/components/colorpicker/ColorPickerGradient.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 @@ -25,7 +25,7 @@ import com.vaadin.v7.ui.AbstractColorPicker.Coordinates2Color; /** * A component that represents a color gradient within a color picker. - * + * * @since 7.0.0 */ @Deprecated @@ -78,7 +78,7 @@ public class ColorPickerGradient extends AbstractComponent /** * Instantiates a new color picker gradient. - * + * * @param id * the id * @param converter @@ -115,7 +115,7 @@ public class ColorPickerGradient extends AbstractComponent /** * Sets the background color. - * + * * @param color * the new background color */ @@ -130,7 +130,7 @@ public class ColorPickerGradient extends AbstractComponent /** * Notifies the listeners that the color has changed. - * + * * @param color * The color which it changed to */ diff --git a/compatibility-server/src/main/java/com/vaadin/v7/ui/components/colorpicker/ColorSelector.java b/compatibility-server/src/main/java/com/vaadin/v7/ui/components/colorpicker/ColorSelector.java index 47e46a6496..0e643bb8a8 100644 --- a/compatibility-server/src/main/java/com/vaadin/v7/ui/components/colorpicker/ColorSelector.java +++ b/compatibility-server/src/main/java/com/vaadin/v7/ui/components/colorpicker/ColorSelector.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 @@ -21,7 +21,7 @@ import com.vaadin.v7.shared.ui.colorpicker.Color; /** * An interface for a color selector. - * + * * @since 7.0.0 */ @Deprecated @@ -29,7 +29,7 @@ public interface ColorSelector extends Serializable, HasColorChangeListener { /** * Sets the color. - * + * * @param color * the new color */ @@ -37,7 +37,7 @@ public interface ColorSelector extends Serializable, HasColorChangeListener { /** * Gets the color. - * + * * @return the color */ public Color getColor(); diff --git a/compatibility-server/src/main/java/com/vaadin/v7/ui/components/colorpicker/HasColorChangeListener.java b/compatibility-server/src/main/java/com/vaadin/v7/ui/components/colorpicker/HasColorChangeListener.java index 5901443a2d..b20426a9c7 100644 --- a/compatibility-server/src/main/java/com/vaadin/v7/ui/components/colorpicker/HasColorChangeListener.java +++ b/compatibility-server/src/main/java/com/vaadin/v7/ui/components/colorpicker/HasColorChangeListener.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 @@ -22,14 +22,14 @@ public interface HasColorChangeListener extends Serializable { /** * Adds a {@link ColorChangeListener} to the component. - * + * * @param listener */ void addColorChangeListener(ColorChangeListener listener); /** * Removes a {@link ColorChangeListener} from the component. - * + * * @param listener */ void removeColorChangeListener(ColorChangeListener listener); -- cgit v1.2.3