diff options
author | Leif Åstrand <leif@vaadin.com> | 2016-10-28 13:53:15 +0300 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2016-10-28 13:57:35 +0300 |
commit | 334b3f0a4b393f274d171dddc359be605c2cd1b1 (patch) | |
tree | 23be86378fc780c3e86b576149e6a457afc71433 /server/src/main/java/com/vaadin/ui | |
parent | ec1679946993e4715d8ff6da5c2f932e0141a8f5 (diff) | |
download | vaadin-framework-334b3f0a4b393f274d171dddc359be605c2cd1b1.tar.gz vaadin-framework-334b3f0a4b393f274d171dddc359be605c2cd1b1.zip |
Remove JavaDoc mentions of RepaintRequestEvent (#19953)
Change-Id: Ief1191b34018e6049c8d20d341150c0b9804f621
Diffstat (limited to 'server/src/main/java/com/vaadin/ui')
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() |