diff options
author | tapio <tapio@vaadin.com> | 2013-06-17 14:41:18 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2013-06-24 09:12:27 +0000 |
commit | cdb8d682af602cc8731e7a63827b499c2da5144e (patch) | |
tree | b7e12cf7b984360e6133815dacfea27a81182b17 /server/src/com/vaadin/ui/Component.java | |
parent | cc8bb2c509024076421abc37113cd7c6d8867571 (diff) | |
download | vaadin-framework-cdb8d682af602cc8731e7a63827b499c2da5144e.tar.gz vaadin-framework-cdb8d682af602cc8731e7a63827b499c2da5144e.zip |
Add support for setId to TabSheet.Tab (#12064)
Change-Id: Ia88b9d03a26b9670ab4026f8083a0b932dafa1c0
Diffstat (limited to 'server/src/com/vaadin/ui/Component.java')
-rw-r--r-- | server/src/com/vaadin/ui/Component.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/server/src/com/vaadin/ui/Component.java b/server/src/com/vaadin/ui/Component.java index 485327bb54..c385805675 100644 --- a/server/src/com/vaadin/ui/Component.java +++ b/server/src/com/vaadin/ui/Component.java @@ -651,7 +651,7 @@ public interface Component extends ClientConnector, Sizeable, Serializable { public Locale getLocale(); /** - * Adds an unique id for component that get's transferred to terminal for + * Adds an unique id for component that is used in the client-side for * testing purposes. Keeping identifiers unique is the responsibility of the * programmer. * @@ -661,7 +661,7 @@ public interface Component extends ClientConnector, Sizeable, Serializable { public void setId(String id); /** - * Get's currently set debug identifier + * Gets currently set debug identifier * * @return current id, null if not set */ @@ -669,7 +669,7 @@ public interface Component extends ClientConnector, Sizeable, Serializable { /** * <p> - * Gets the component's description, used in tooltips and can be displayed + * Gets the components description, used in tooltips and can be displayed * directly in certain other components such as forms. The description can * be used to briefly describe the state of the component to the user. The * description string may contain certain XML tags: |