Browse Source

Add API for accessing PropertySet of Grid (#10714)

tags/8.4.0.alpha1
Aki Väliaho 6 years ago
parent
commit
f3e06f4f41
1 changed files with 11 additions and 0 deletions
  1. 11
    0
      server/src/main/java/com/vaadin/ui/Grid.java

+ 11
- 0
server/src/main/java/com/vaadin/ui/Grid.java View File

@@ -2517,6 +2517,17 @@ public class Grid<T> extends AbstractListing<T> implements HasComponents,

}

/**
* Returns the property set used by this grid.
*
* @return propertySet
* the property set to return
* @since
*/
protected PropertySet<T> getPropertySet() {
return propertySet;
}

/**
* Creates a grid using a custom {@link PropertySet} implementation for
* creating a default set of columns and for resolving property names with

Loading…
Cancel
Save