001package org.gwtbootstrap3.extras.toggleswitch.client.ui; 002 003import org.gwtbootstrap3.extras.toggleswitch.client.ui.base.ToggleSwitchBase; 004 005import com.google.gwt.dom.client.Document; 006 007/* 008 * #%L 009 * GwtBootstrap3 010 * %% 011 * Copyright (C) 2013 GwtBootstrap3 012 * %% 013 * Licensed under the Apache License, Version 2.0 (the "License"); 014 * you may not use this file except in compliance with the License. 015 * You may obtain a copy of the License at 016 * 017 * http://www.apache.org/licenses/LICENSE-2.0 018 * 019 * Unless required by applicable law or agreed to in writing, software 020 * distributed under the License is distributed on an "AS IS" BASIS, 021 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 022 * See the License for the specific language governing permissions and 023 * limitations under the License. 024 * #L% 025 */ 026 027/** 028 * @author Grant Slender 029 */ 030public class ToggleSwitch extends ToggleSwitchBase { 031 032 public ToggleSwitch() { 033 super(Document.get().createCheckInputElement()); 034 } 035 036}