use of com.haulmont.cuba.security.entity.Presentation in project cuba by cuba-platform.
the class WebAbstractTable method applyPresentation.
@Override
public void applyPresentation(Object id) {
if (isUsePresentations() && presentations != null) {
Presentation p = presentations.getPresentation(id);
applyPresentation(p);
} else {
throw new UnsupportedOperationException("Component doesn't use presentations");
}
}
Aggregations