org.gwtbootstrap3.extras.select.client.SelectClientBundle Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gwtbootstrap3-extras Show documentation
Show all versions of gwtbootstrap3-extras Show documentation
Extra, third-party widgets/components for GwtBootstrap3
package org.gwtbootstrap3.extras.select.client;
/*
* #%L
* GwtBootstrap3
* %%
* Copyright (C) 2013 - 2014 GwtBootstrap3
* %%
* 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%
*/
import com.google.gwt.core.client.GWT;
import com.google.gwt.resources.client.ClientBundle;
import com.google.gwt.resources.client.TextResource;
/**
* @author godi
*/
public interface SelectClientBundle extends ClientBundle {
static final SelectClientBundle INSTANCE = GWT.create(SelectClientBundle.class);
@Source("resource/js/bootstrap-select-1.6.3.min.cache.js")
TextResource selectJs();
@Source("resource/js/locales.cache.1.6.3/defaults-cs_CZ.min.js")
TextResource cs();
@Source("resource/js/locales.cache.1.6.3/defaults-de_DE.min.js")
TextResource de();
@Source("resource/js/locales.cache.1.6.3/defaults-en_US.min.js")
TextResource en();
@Source("resource/js/locales.cache.1.6.3/defaults-es_CL.min.js")
TextResource es();
@Source("resource/js/locales.cache.1.6.3/defaults-eu.min.js")
TextResource eu();
@Source("resource/js/locales.cache.1.6.3/defaults-fr_FR.min.js")
TextResource fr();
@Source("resource/js/locales.cache.1.6.3/defaults-it_IT.min.js")
TextResource it();
@Source("resource/js/locales.cache.1.6.3/defaults-nl_NL.min.js")
TextResource nl();
@Source("resource/js/locales.cache.1.6.3/defaults-pl_PL.min.js")
TextResource pl();
@Source("resource/js/locales.cache.1.6.3/defaults-pt_BR.min.js")
TextResource pt_BR();
@Source("resource/js/locales.cache.1.6.3/defaults-ro_RO.min.js")
TextResource ro();
@Source("resource/js/locales.cache.1.6.3/defaults-ua_UA.min.js")
TextResource ua();
@Source("resource/js/locales.cache.1.6.3/defaults-zh_CN.min.js")
TextResource zh_CN();
@Source("resource/js/locales.cache.1.6.3/defaults-zh_TW.min.js")
TextResource zh_TW();
}