aboutsummaryrefslogtreecommitdiffstats
path: root/server/src/main/java/com/vaadin/ui/Panel.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/Panel.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/Panel.java')
-rw-r--r--server/src/main/java/com/vaadin/ui/Panel.java38
1 files changed, 19 insertions, 19 deletions
diff --git a/server/src/main/java/com/vaadin/ui/Panel.java b/server/src/main/java/com/vaadin/ui/Panel.java
index daa4974e7e..193f0bdcef 100644
--- a/server/src/main/java/com/vaadin/ui/Panel.java
+++ b/server/src/main/java/com/vaadin/ui/Panel.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
@@ -38,7 +38,7 @@ import com.vaadin.ui.declarative.DesignContext;
/**
* Panel - a simple single component container.
- *
+ *
* @author Vaadin Ltd.
* @since 3.0
*/
@@ -68,7 +68,7 @@ public class Panel extends AbstractSingleComponentContainer
/**
* Creates a new empty panel which contains the given content.
- *
+ *
* @param content
* the content for the panel.
*/
@@ -81,7 +81,7 @@ public class Panel extends AbstractSingleComponentContainer
/**
* Creates a new empty panel with caption.
- *
+ *
* @param caption
* the caption used in the panel (HTML).
*/
@@ -91,7 +91,7 @@ public class Panel extends AbstractSingleComponentContainer
/**
* Creates a new empty panel with the given caption and content.
- *
+ *
* @param caption
* the caption of the panel (HTML).
* @param content
@@ -104,11 +104,11 @@ public class Panel extends AbstractSingleComponentContainer
/**
* Sets the caption of the panel.
- *
+ *
* Note that the caption is interpreted as HTML and therefore care should be
* taken not to enable HTML injection and XSS attacks using panel captions.
* This behavior may change in future versions.
- *
+ *
* @see AbstractComponent#setCaption(String)
*/
@Override
@@ -118,7 +118,7 @@ public class Panel extends AbstractSingleComponentContainer
/*
* (non-Javadoc)
- *
+ *
* @see com.vaadin.server.LegacyComponent#paintContent(com.vaadin.server
* .PaintTarget)
*/
@@ -132,7 +132,7 @@ public class Panel extends AbstractSingleComponentContainer
/**
* Called when one or more variables handled by the implementing class are
* changed.
- *
+ *
* @see com.vaadin.server.VariableOwner#changeVariables(Object, Map)
*/
@Override
@@ -170,7 +170,7 @@ public class Panel extends AbstractSingleComponentContainer
/*
* (non-Javadoc)
- *
+ *
* @see com.vaadin.server.Scrollable#setScrollable(boolean)
*/
@Override
@@ -180,7 +180,7 @@ public class Panel extends AbstractSingleComponentContainer
/*
* (non-Javadoc)
- *
+ *
* @see com.vaadin.server.Scrollable#setScrollable(boolean)
*/
@Override
@@ -190,7 +190,7 @@ public class Panel extends AbstractSingleComponentContainer
/*
* (non-Javadoc)
- *
+ *
* @see com.vaadin.server.Scrollable#setScrollLeft(int)
*/
@Override
@@ -204,7 +204,7 @@ public class Panel extends AbstractSingleComponentContainer
/*
* (non-Javadoc)
- *
+ *
* @see com.vaadin.server.Scrollable#setScrollTop(int)
*/
@Override
@@ -267,9 +267,9 @@ public class Panel extends AbstractSingleComponentContainer
* user clicks inside the Panel. Also when the click targets a component
* inside the Panel, provided the targeted component does not prevent the
* click event from propagating.
- *
+ *
* Use {@link #removeListener(ClickListener)} to remove the listener.
- *
+ *
* @param listener
* The listener to add
*/
@@ -290,7 +290,7 @@ public class Panel extends AbstractSingleComponentContainer
/**
* Remove a click listener from the Panel. The listener should earlier have
* been added using {@link #addListener(ClickListener)}.
- *
+ *
* @param listener
* The listener to remove
*/
@@ -326,7 +326,7 @@ public class Panel extends AbstractSingleComponentContainer
/**
* Moves keyboard focus to the component. {@see Focusable#focus()}
- *
+ *
*/
@Override
public void focus() {