diff options
author | Pekka Hyvönen <pekka@vaadin.com> | 2012-08-28 10:16:58 +0300 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2012-08-28 11:31:52 +0300 |
commit | 05964e7adaed15b7bda6ba3c49ce226ec4ff723a (patch) | |
tree | b76381be637511581aa2b0d9e578c6eb925ccf8e /server/src/com/vaadin/ui/Component.java | |
parent | c6d43cc88fb0ef4853e07be54fc76a6aa1dc9e23 (diff) | |
download | vaadin-framework-05964e7adaed15b7bda6ba3c49ce226ec4ff723a.tar.gz vaadin-framework-05964e7adaed15b7bda6ba3c49ce226ec4ff723a.zip |
Renamed Component.debugId to id (#3700)
Applied patch from Pekka with minor changes
(@deprecation javadoc, call the real methods from deprecated methods in AbstractComponent)
Diffstat (limited to 'server/src/com/vaadin/ui/Component.java')
-rw-r--r-- | server/src/com/vaadin/ui/Component.java | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/server/src/com/vaadin/ui/Component.java b/server/src/com/vaadin/ui/Component.java index 400dd66cac..0559cc5e6a 100644 --- a/server/src/com/vaadin/ui/Component.java +++ b/server/src/com/vaadin/ui/Component.java @@ -510,8 +510,8 @@ public interface Component extends ClientConnector, Sizeable, Serializable { * Gets the UI the component is attached to. * * <p> - * If the component is not attached to a UI through a component - * containment hierarchy, <code>null</code> is returned. + * If the component is not attached to a UI through a component containment + * hierarchy, <code>null</code> is returned. * </p> * * @return the UI of the component or <code>null</code> if it is not @@ -574,8 +574,8 @@ public interface Component extends ClientConnector, Sizeable, Serializable { * {@link #setParent(Component)}. * </p> * <p> - * This method must call {@link UI#componentAttached(Component)} to let - * the UI know that a new Component has been attached. + * This method must call {@link UI#componentAttached(Component)} to let the + * UI know that a new Component has been attached. * </p> * * @@ -630,14 +630,14 @@ public interface Component extends ClientConnector, Sizeable, Serializable { * @param id * An alphanumeric id */ - public void setDebugId(String id); + public void setId(String id); /** * Get's currently set debug identifier * - * @return current debug id, null if not set + * @return current id, null if not set */ - public String getDebugId(); + public String getId(); /* Component event framework */ |