diff options
author | Teemu Suo-Anttila <teemusa@vaadin.com> | 2015-05-12 12:18:50 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2015-05-12 13:54:11 +0000 |
commit | 5e0ac1f31c73537fdfce39e5a9d0c246a9deedd7 (patch) | |
tree | 2008f647e9ac9d5ef22b3f617e1c46877170db0a /client | |
parent | 2fc082d9ff8744e222adde7666dc0b3c1c5c761d (diff) | |
download | vaadin-framework-5e0ac1f31c73537fdfce39e5a9d0c246a9deedd7.tar.gz vaadin-framework-5e0ac1f31c73537fdfce39e5a9d0c246a9deedd7.zip |
Add missing JavaDoc for Escalator.SubPartArguments (#17814)
Change-Id: Ib90f9325426898d65584cf9928a7730e18745c5d
Diffstat (limited to 'client')
-rw-r--r-- | client/src/com/vaadin/client/widgets/Escalator.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/client/src/com/vaadin/client/widgets/Escalator.java b/client/src/com/vaadin/client/widgets/Escalator.java index a196c7f7d7..bb497e7e13 100644 --- a/client/src/com/vaadin/client/widgets/Escalator.java +++ b/client/src/com/vaadin/client/widgets/Escalator.java @@ -5471,6 +5471,12 @@ public class Escalator extends Widget implements RequiresResize, } } + /** + * Utility class for parsing and storing SubPart request string attributes + * for Grid and Escalator. + * + * @since 7.5.0 + */ public static class SubPartArguments { private String type; private int[] indices; |