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

net.intelie.live.plugins.messenger.search.document.TextSearchField Maven / Gradle / Ivy

The newest version!
package net.intelie.live.plugins.messenger.search.document;

public class TextSearchField extends SearchField {
    private final String text;

    public TextSearchField(String name, String text, boolean store) {
        super(name, store);
        this.text = text;
    }

    public String getText() {
        return text;
    }

    @Override
    public String stringValue() {
        return text;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy