All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.selophane.elements.widget.TextInput Maven / Gradle / Ivy

There is a newer version: 0.12
Show newest version
package org.selophane.elements.widget;

import org.selophane.elements.base.Element;
import org.selophane.elements.base.ImplementedBy;

/**
 * Text field functionality.
 */
@ImplementedBy(TextInputImpl.class)
public interface TextInput extends Element {
    /**
     * @param text The text to type into the field.
     */
    void set(String text);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy