Example usage for com.vaadin.ui.renderers TextRenderer TextRenderer

List of usage examples for com.vaadin.ui.renderers TextRenderer TextRenderer

Introduction

In this page you can find the example usage for com.vaadin.ui.renderers TextRenderer TextRenderer.

Prototype

public TextRenderer(String nullRepresentation) 

Source Link

Document

Creates a new text renderer with the given string to represent null values.

Usage

From source file:com.haulmont.cuba.web.gui.components.renderers.WebTextRenderer.java

License:Apache License

@Override
protected TextRenderer createImplementation() {
    return new TextRenderer(getNullRepresentation());
}