001package org.gwtbootstrap3.client.ui.constants;
002
003/*
004 * #%L
005 * GwtBootstrap3
006 * %%
007 * Copyright (C) 2013 GwtBootstrap3
008 * %%
009 * Licensed under the Apache License, Version 2.0 (the "License");
010 * you may not use this file except in compliance with the License.
011 * You may obtain a copy of the License at
012 * 
013 *      http://www.apache.org/licenses/LICENSE-2.0
014 * 
015 * Unless required by applicable law or agreed to in writing, software
016 * distributed under the License is distributed on an "AS IS" BASIS,
017 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
018 * See the License for the specific language governing permissions and
019 * limitations under the License.
020 * #L%
021 */
022
023/**
024 * @author Sven Jacobs
025 */
026public class Attributes {
027
028    public static final String DATA_BACKDROP = "data-backdrop";
029    public static final String DATA_DISMISS = "data-dismiss";
030    public static final String DATA_KEYBOARD = "data-keyboard";
031    public static final String DATA_LOADING_TEXT = "data-loading-text";
032    public static final String DATA_SPY = "data-spy";
033    public static final String DATA_TARGET = "data-target";
034    public static final String DATA_TOGGLE = "data-toggle";
035    public static final String DATA_PARENT = "data-parent";
036    public static final String DATA_SLIDE_TO = "data-slide-to";
037    public static final String DATA_RIDE = "data-ride";
038    public static final String DATA_SLIDE = "data-slide";
039
040    public static final String FOR = "for";
041
042    public static final String ROLE = "role";
043
044    public static final String TABINDEX = "tabindex";
045
046    public static final String TARGET = "target";
047
048    public static final String TYPE = "type";
049
050    public static final String VALUE = "value";
051}