aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--server/src/main/java/com/vaadin/ui/AbstractComponent.java6
-rw-r--r--server/src/main/java/com/vaadin/ui/Component.java8
-rw-r--r--server/src/main/java/com/vaadin/ui/MenuBar.java3
-rw-r--r--server/src/main/java/com/vaadin/ui/TabSheet.java5
4 files changed, 3 insertions, 19 deletions
diff --git a/server/src/main/java/com/vaadin/ui/AbstractComponent.java b/server/src/main/java/com/vaadin/ui/AbstractComponent.java
index 94fa738dd3..6cbf745851 100644
--- a/server/src/main/java/com/vaadin/ui/AbstractComponent.java
+++ b/server/src/main/java/com/vaadin/ui/AbstractComponent.java
@@ -289,8 +289,7 @@ public abstract class AbstractComponent extends AbstractClientConnector
/**
* Sets the component's caption <code>String</code>. Caption is the visible
- * name of the component. This method will trigger a
- * {@link RepaintRequestEvent}.
+ * name of the component.
*
* @param caption
* the new caption <code>String</code> for the component.
@@ -388,8 +387,7 @@ public abstract class AbstractComponent extends AbstractClientConnector
}
/**
- * Sets the component's icon. This method will trigger a
- * {@link RepaintRequestEvent}.
+ * Sets the component's icon.
*
* @param icon
* the icon to be shown with the component's caption.
diff --git a/server/src/main/java/com/vaadin/ui/Component.java b/server/src/main/java/com/vaadin/ui/Component.java
index 5822a7b078..b5ffebef12 100644
--- a/server/src/main/java/com/vaadin/ui/Component.java
+++ b/server/src/main/java/com/vaadin/ui/Component.java
@@ -125,10 +125,6 @@ public interface Component extends ClientConnector, Sizeable, Serializable {
* removing those defined in other layers.
* </p>
*
- * <p>
- * This method will trigger a {@link RepaintRequestEvent}.
- * </p>
- *
* @param style
* the new style or styles of the component as a space-separated
* list
@@ -168,10 +164,6 @@ public interface Component extends ClientConnector, Sizeable, Serializable {
* .v-button-mystyle {font-style: italic;}
* </pre>
*
- * <p>
- * This method will trigger a {@link RepaintRequestEvent}.
- * </p>
- *
* @param style
* the new style to be added to the component
* @see #getStyleName()
diff --git a/server/src/main/java/com/vaadin/ui/MenuBar.java b/server/src/main/java/com/vaadin/ui/MenuBar.java
index 884c3d4eb3..8fca3f1460 100644
--- a/server/src/main/java/com/vaadin/ui/MenuBar.java
+++ b/server/src/main/java/com/vaadin/ui/MenuBar.java
@@ -784,8 +784,7 @@ public class MenuBar extends AbstractComponent
/**
* Sets the items's description. See {@link #getDescription()} for more
- * information on what the description is. This method will trigger a
- * {@link RepaintRequestEvent}.
+ * information on what the description is.
*
* @param description
* the new description string for the component.
diff --git a/server/src/main/java/com/vaadin/ui/TabSheet.java b/server/src/main/java/com/vaadin/ui/TabSheet.java
index b19acf8ddb..8cf0c26731 100644
--- a/server/src/main/java/com/vaadin/ui/TabSheet.java
+++ b/server/src/main/java/com/vaadin/ui/TabSheet.java
@@ -1081,11 +1081,6 @@ public class TabSheet extends AbstractComponentContainer
* .v-tabsheet-tabitemcell-mystyle {font-style: italic;}
* </pre>
*
- * <p>
- * This method will trigger a {@link RepaintRequestEvent} on the
- * TabSheet to which the Tab belongs.
- * </p>
- *
* @param styleName
* the new style to be set for tab
* @see #getStyleName()