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

pl.fhframework.model.forms.IComboItem Maven / Gradle / Ivy

There is a newer version: 4.10.401
Show newest version
package pl.fhframework.model.forms;

/**
 * Created by Piotr on 2017-09-29.
 */
public interface IComboItem {

    public String getTargetValue();

    public default String getDisplayedValue() {
        return getTargetValue();
    }

    public default Integer getTargetCursorPosition() {
        return null;
    }

    public Long getTargetId();

    public String getFullHintWithoutExtras();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy