blob: 729a999a21eca3b98376f10757ad6bf5a80e27b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/*
@VaadinApache2LicenseForJavaFiles@
*/
package com.vaadin.terminal.gwt.widgetsetutils;
import com.vaadin.terminal.gwt.client.ComponentConnector;
import com.vaadin.terminal.gwt.client.ui.Connect.LoadStyle;
/**
* WidgetMap generator that builds a widgetset that optimizes the transferred
* data. Widgets are loaded only when used if the widgetset is built with this
* generator.
*
* @see WidgetMapGenerator
*
*/
public class LazyWidgetMapGenerator extends WidgetMapGenerator {
@Override
protected LoadStyle getLoadStyle(
Class<? extends ComponentConnector> connector) {
return LoadStyle.LAZY;
}
}
|