aboutsummaryrefslogtreecommitdiffstats
path: root/server/src/main/java/com/vaadin/ui/ComponentContainer.java
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2016-08-18 09:31:40 +0300
committerArtur Signell <artur@vaadin.com>2016-08-18 09:31:40 +0300
commiteeffa805a212ebb25c4af18db1e927b23a3ad66a (patch)
tree3bfdb4ef4b8e9b6e9e45c77c90b4f31eba1af94e /server/src/main/java/com/vaadin/ui/ComponentContainer.java
parent6d54d78944f6c3278eed3bb5e7ee19687ee5714e (diff)
downloadvaadin-framework-eeffa805a212ebb25c4af18db1e927b23a3ad66a.tar.gz
vaadin-framework-eeffa805a212ebb25c4af18db1e927b23a3ad66a.zip
Remove trailing whitespace from code and javadoc
Change-Id: I4c852b7f9928e190572876690d5bef1234494a5d
Diffstat (limited to 'server/src/main/java/com/vaadin/ui/ComponentContainer.java')
-rw-r--r--server/src/main/java/com/vaadin/ui/ComponentContainer.java26
1 files changed, 13 insertions, 13 deletions
diff --git a/server/src/main/java/com/vaadin/ui/ComponentContainer.java b/server/src/main/java/com/vaadin/ui/ComponentContainer.java
index ce8cb891e1..521bee3879 100644
--- a/server/src/main/java/com/vaadin/ui/ComponentContainer.java
+++ b/server/src/main/java/com/vaadin/ui/ComponentContainer.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
@@ -24,7 +24,7 @@ import com.vaadin.ui.HasComponents.ComponentAttachDetachNotifier;
* A special type of parent which allows the user to add and remove components
* to it. Typically does not have any restrictions on the number of children it
* can contain.
- *
+ *
* @author Vaadin Ltd.
* @since 3.0
*/
@@ -33,7 +33,7 @@ public interface ComponentContainer
/**
* Adds the component into this container.
- *
+ *
* @param c
* the component to be added.
*/
@@ -41,7 +41,7 @@ public interface ComponentContainer
/**
* Adds the components in the given order to this component container.
- *
+ *
* @param components
* The components to add.
*/
@@ -49,7 +49,7 @@ public interface ComponentContainer
/**
* Removes the component from this container.
- *
+ *
* @param c
* the component to be removed.
*/
@@ -63,7 +63,7 @@ public interface ComponentContainer
/**
* Replaces the component in the container with another one without changing
* position.
- *
+ *
* <p>
* This method replaces component with another one is such way that the new
* component overtakes the position of the old component. If the old
@@ -72,7 +72,7 @@ public interface ComponentContainer
* positions are swapped. Component attach and detach events should be taken
* care as with add and remove.
* </p>
- *
+ *
* @param oldComponent
* the old component that will be replaced.
* @param newComponent
@@ -85,9 +85,9 @@ public interface ComponentContainer
* Gets an iterator to the collection of contained components. Using this
* iterator it is possible to step through all components contained in this
* container.
- *
+ *
* @return the component iterator.
- *
+ *
* @deprecated As of 7.0, use {@link #iterator()} instead.
*/
@Deprecated
@@ -96,7 +96,7 @@ public interface ComponentContainer
/**
* Gets the number of children this {@link ComponentContainer} has. This
* must be symmetric with what {@link #getComponentIterator()} returns.
- *
+ *
* @return The number of child components this container has.
* @since 7.0.0
*/
@@ -105,7 +105,7 @@ public interface ComponentContainer
/**
* Moves all components from an another container into this container. The
* components are removed from <code>source</code>.
- *
+ *
* @param source
* the container which contains the components that are to be
* moved to this container.