Example usage for com.vaadin.ui.themes ValoTheme TEXTFIELD_ALIGN_CENTER

List of usage examples for com.vaadin.ui.themes ValoTheme TEXTFIELD_ALIGN_CENTER

Introduction

In this page you can find the example usage for com.vaadin.ui.themes ValoTheme TEXTFIELD_ALIGN_CENTER.

Prototype

String TEXTFIELD_ALIGN_CENTER

To view the source code for com.vaadin.ui.themes ValoTheme TEXTFIELD_ALIGN_CENTER.

Click Source Link

Document

Align the text inside the field to center.

Usage

From source file:lifetime.component.custom.LifetimeTextField.java

License:Apache License

public LifetimeTextField(String caption) {
    super(caption);
    super.setImmediate(true);
    super.setSizeUndefined();
    setStyleName(ValoTheme.TEXTFIELD_ALIGN_CENTER);
}