summaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
Diffstat (limited to 'client')
-rw-r--r--client/src/com/vaadin/client/componentlocator/LocatorUtil.java2
-rw-r--r--client/src/com/vaadin/client/ui/VSlider.java11
2 files changed, 13 insertions, 0 deletions
diff --git a/client/src/com/vaadin/client/componentlocator/LocatorUtil.java b/client/src/com/vaadin/client/componentlocator/LocatorUtil.java
index 7de0de3855..1c0b2a4493 100644
--- a/client/src/com/vaadin/client/componentlocator/LocatorUtil.java
+++ b/client/src/com/vaadin/client/componentlocator/LocatorUtil.java
@@ -79,6 +79,7 @@ public class LocatorUtil {
/**
* Checks if path refers to vaadin UI element com.vaadin.ui.UI.
*
+ * @since 7.3.4
* @param path
* to vaadin element
* @return true if path refers to UI element, false otherwise
@@ -93,6 +94,7 @@ public class LocatorUtil {
* Checks if path refers to vaadin Notification element
* com.vaadin.ui.Notification.
*
+ * @since 7.3.4
* @param path
* to vaadin element
* @return true if path refers to Notification element, false otherwise
diff --git a/client/src/com/vaadin/client/ui/VSlider.java b/client/src/com/vaadin/client/ui/VSlider.java
index ff60ae6e43..c727d5bd8a 100644
--- a/client/src/com/vaadin/client/ui/VSlider.java
+++ b/client/src/com/vaadin/client/ui/VSlider.java
@@ -655,6 +655,11 @@ public class VSlider extends SimpleFocusablePanel implements Field,
}
}
+ /**
+ * Returns the feedback popup if subPart is "popup" and null otherwise.
+ *
+ * @since 7.3.4
+ */
@Override
public com.google.gwt.user.client.Element getSubPartElement(String subPart) {
if (subPart.equals("popup")) {
@@ -664,6 +669,12 @@ public class VSlider extends SimpleFocusablePanel implements Field,
return null;
}
+ /**
+ * Returns "popup" if any element is or has a child that corresponds to
+ * subElement.
+ *
+ * @since 7.3.4
+ */
@Override
public String getSubPartName(com.google.gwt.user.client.Element subElement) {
if (feedbackPopup.getElement().isOrHasChild(subElement)) {