diff options
author | Matti Tahvonen <matti.tahvonen@itmill.com> | 2007-12-14 10:16:22 +0000 |
---|---|---|
committer | Matti Tahvonen <matti.tahvonen@itmill.com> | 2007-12-14 10:16:22 +0000 |
commit | 81c1527631aa278bbc696fa3e23d6fb05c613a9c (patch) | |
tree | 29e9c34293d59e69da9d12fa4be2478923056da0 /src/com/itmill/toolkit/ui/AbstractComponent.java | |
parent | 4d20bbdb46c3ad38e341a432867bbf5881836b2b (diff) | |
download | vaadin-framework-81c1527631aa278bbc696fa3e23d6fb05c613a9c.tar.gz vaadin-framework-81c1527631aa278bbc696fa3e23d6fb05c613a9c.zip |
refactored method name to correspond to the one (setDebugId) to be added to GWT (according to rumors)
svn changeset:3241/svn branch:trunk
Diffstat (limited to 'src/com/itmill/toolkit/ui/AbstractComponent.java')
-rw-r--r-- | src/com/itmill/toolkit/ui/AbstractComponent.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/itmill/toolkit/ui/AbstractComponent.java b/src/com/itmill/toolkit/ui/AbstractComponent.java index 8750fbce8f..90099eecc7 100644 --- a/src/com/itmill/toolkit/ui/AbstractComponent.java +++ b/src/com/itmill/toolkit/ui/AbstractComponent.java @@ -132,11 +132,11 @@ public abstract class AbstractComponent implements Component, MethodEventSource */ public abstract String getTag(); - public void setTestingIdentifier(String id) { + public void setDebugId(String id) { testingId = id; } - public String getTestingIdentifier() { + public String getDebugId() { return testingId; } |