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

com.vaadin.testbench.HasStringValueProperty Maven / Gradle / Ivy

/**
 * Copyright (C) 2000-2022 Vaadin Ltd
 *
 * This program is available under Vaadin Commercial License and Service Terms.
 *
 * See  for the full
 * license.
 */
package com.vaadin.testbench;

public interface HasStringValueProperty extends HasPropertySettersGetters {

    default public String getValue() {
        return getPropertyString("value");
    }

    default public void setValue(String string) {
        setProperty("value", string);
    }

    @Override
    default public void clear() {
        setValue("");
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy