aboutsummaryrefslogtreecommitdiffstats
path: root/uitest/src/main/java/com/vaadin/tests/components/grid/JavaScriptStringRendererWithDestoryMethod.java
blob: bd5e0e952b47b2f7b28fe92b2a690a9400a9ff8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.vaadin.tests.components.grid;

import com.vaadin.annotations.JavaScript;
import com.vaadin.tests.components.grid.JavaScriptRenderers.ItemBean;
import com.vaadin.ui.renderers.AbstractJavaScriptRenderer;

@JavaScript("JavaScriptStringRendererWithDestoryMethod.js")
public class JavaScriptStringRendererWithDestoryMethod
        extends AbstractJavaScriptRenderer<ItemBean, String> {

    protected JavaScriptStringRendererWithDestoryMethod() {
        super(String.class);
    }

}