org.lunifera.web.vaadin.components.fields.TextField.java Source code

Java tutorial

Introduction

Here is the source code for org.lunifera.web.vaadin.components.fields.TextField.java

Source

/*******************************************************************************
 * Copyright (c) 2011-2013 Committers of lunifera.org
 * 
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *    Florian Pirchner - initial API and implementation
 *    Hans-Georg Glckler - initial API and implementation
 *******************************************************************************/
package org.lunifera.web.vaadin.components.fields;

import com.vaadin.data.Property;

/**
 * A textfield specific for redvoodo.
 */
@SuppressWarnings("serial")
public class TextField extends com.vaadin.ui.TextField {

    public TextField() {
        super();
    }

    public TextField(Property<String> dataSource) {
        super(dataSource);
    }

    public TextField(String caption, Property<String> dataSource) {
        super(caption, dataSource);
    }

    public TextField(String caption, String value) {
        super(caption, value);
    }

    public TextField(String caption) {
        super(caption);
    }

}