Browse Source

Relax mapper access in HierarchicalDataCommunicator

Fixes #10292
tags/8.2.0.alpha3
Ilia Motornyi 6 years ago
parent
commit
8e14349e53
No account linked to committer's email address

+ 8
- 0
server/src/main/java/com/vaadin/data/provider/HierarchicalDataCommunicator.java View File

@@ -322,4 +322,12 @@ public class HierarchicalDataCommunicator<T> extends DataCommunicator<T> {
super.setFilter(filter);
}

/**
* Returns active {@code HierarchyMapper}
*
* @return the mapper
*/
protected HierarchyMapper<T, ?> getMapper() {
return mapper;
}
}

Loading…
Cancel
Save