summaryrefslogtreecommitdiffstats
path: root/src/com/itmill/toolkit/ui/Panel.java
diff options
context:
space:
mode:
authorArtur Signell <artur.signell@itmill.com>2008-09-02 12:53:12 +0000
committerArtur Signell <artur.signell@itmill.com>2008-09-02 12:53:12 +0000
commit04ce8311762c5f3144a9e566df279bd0e2e774a8 (patch)
tree7fbe583bc53a1c02b2d01612aad73d6729d1a5d1 /src/com/itmill/toolkit/ui/Panel.java
parente8e41a3dc6c2e4a4ce9bb500f0c0aab93b214bc3 (diff)
downloadvaadin-framework-04ce8311762c5f3144a9e566df279bd0e2e774a8.tar.gz
vaadin-framework-04ce8311762c5f3144a9e566df279bd0e2e774a8.zip
Mass format
svn changeset:5331/svn branch:trunk
Diffstat (limited to 'src/com/itmill/toolkit/ui/Panel.java')
-rw-r--r--src/com/itmill/toolkit/ui/Panel.java18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/com/itmill/toolkit/ui/Panel.java b/src/com/itmill/toolkit/ui/Panel.java
index 6359687c3c..49a8a01dc6 100644
--- a/src/com/itmill/toolkit/ui/Panel.java
+++ b/src/com/itmill/toolkit/ui/Panel.java
@@ -69,7 +69,7 @@ public class Panel extends AbstractComponentContainer implements Scrollable,
* Creates a new empty panel with given layout. Layout must be non-null.
*
* @param layout
- * the layout used in the panel.
+ * the layout used in the panel.
*/
public Panel(Layout layout) {
setLayout(layout);
@@ -79,7 +79,7 @@ public class Panel extends AbstractComponentContainer implements Scrollable,
* Creates a new empty panel with caption. Default layout is used.
*
* @param caption
- * the caption used in the panel.
+ * the caption used in the panel.
*/
public Panel(String caption) {
this(caption, null);
@@ -89,9 +89,9 @@ public class Panel extends AbstractComponentContainer implements Scrollable,
* Creates a new empty panel with caption.
*
* @param caption
- * the caption of the panel.
+ * the caption of the panel.
* @param layout
- * the layout used in the panel.
+ * the layout used in the panel.
*/
public Panel(String caption, Layout layout) {
this(layout);
@@ -116,7 +116,7 @@ public class Panel extends AbstractComponentContainer implements Scrollable,
* (changed in 5.2.2). Use function in Layout interface manually.
*
* @param newLayout
- * the New layout of the panel.
+ * the New layout of the panel.
*/
public void setLayout(Layout newLayout) {
@@ -158,9 +158,9 @@ public class Panel extends AbstractComponentContainer implements Scrollable,
* Paints the content of this component.
*
* @param target
- * the Paint Event.
+ * the Paint Event.
* @throws PaintException
- * if the paint operation failed.
+ * if the paint operation failed.
*/
public void paintContent(PaintTarget target) throws PaintException {
layout.paint(target);
@@ -233,7 +233,7 @@ public class Panel extends AbstractComponentContainer implements Scrollable,
* Adds the component into this container.
*
* @param c
- * the component to be added.
+ * the component to be added.
* @see com.itmill.toolkit.ui.AbstractComponentContainer#addComponent(com.itmill.toolkit.ui.Component)
*/
public void addComponent(Component c) {
@@ -246,7 +246,7 @@ public class Panel extends AbstractComponentContainer implements Scrollable,
* Removes the component from this container.
*
* @param c
- * The component to be added.
+ * The component to be added.
* @see com.itmill.toolkit.ui.AbstractComponentContainer#removeComponent(com.itmill.toolkit.ui.Component)
*/
public void removeComponent(Component c) {