![JAR search and dependency download from the Maven repository](/logo.png)
gwt.material.design.addins.client.combobox.js.LanguageOptions Maven / Gradle / Ivy
/*
* #%L
* GwtMaterial
* %%
* Copyright (C) 2015 - 2017 GwtMaterialDesign
* %%
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* #L%
*/
package gwt.material.design.addins.client.combobox.js;
import gwt.material.design.jquery.client.api.Functions;
import jsinterop.annotations.JsOverlay;
import jsinterop.annotations.JsPackage;
import jsinterop.annotations.JsProperty;
import jsinterop.annotations.JsType;
/**
* Options for combobox component
*
* @author kevzlou7979
*/
@JsType(isNative = true, name = "Object", namespace = JsPackage.GLOBAL)
public class LanguageOptions {
@JsProperty
private Functions.FuncRet1 errorLoading;
@JsProperty
private Functions.FuncRet1 inputTooLong;
@JsProperty
private Functions.FuncRet1 inputTooShort;
@JsProperty
private Functions.FuncRet1 loadingMore;
@JsProperty
private Functions.FuncRet1 maximumSelected;
@JsProperty
private Functions.FuncRet1 noResults;
@JsProperty
private Functions.FuncRet1 searching;
@JsOverlay
public final Functions.FuncRet1 getErrorLoading() {
return errorLoading;
}
@JsOverlay
public final void setErrorLoading(Functions.FuncRet1 errorLoading) {
this.errorLoading = errorLoading;
}
@JsOverlay
public final Functions.FuncRet1 getInputTooLong() {
return inputTooLong;
}
@JsOverlay
public final void setInputTooLong(Functions.FuncRet1 inputTooLong) {
this.inputTooLong = inputTooLong;
}
@JsOverlay
public final Functions.FuncRet1 getInputTooShort() {
return inputTooShort;
}
@JsOverlay
public final void setInputTooShort(Functions.FuncRet1 inputTooShort) {
this.inputTooShort = inputTooShort;
}
@JsOverlay
public final Functions.FuncRet1 getLoadingMore() {
return loadingMore;
}
@JsOverlay
public final void setLoadingMore(Functions.FuncRet1 loadingMore) {
this.loadingMore = loadingMore;
}
@JsOverlay
public final Functions.FuncRet1 getMaximumSelected() {
return maximumSelected;
}
@JsOverlay
public final void setMaximumSelected(Functions.FuncRet1 maximumSelected) {
this.maximumSelected = maximumSelected;
}
@JsOverlay
public final Functions.FuncRet1 getNoResults() {
return noResults;
}
@JsOverlay
public final void setNoResults(Functions.FuncRet1 noResults) {
this.noResults = noResults;
}
@JsOverlay
public final Functions.FuncRet1 getSearching() {
return searching;
}
@JsOverlay
public final void setSearching(Functions.FuncRet1 searching) {
this.searching = searching;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy