/* GNU GENERAL LICENSE Copyright (C) 2006 The Lobo Project. Copyright (C) 2014 - 2017 Lobo Evolution This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either verion 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General License for more details. You should have received a copy of the GNU General Public along with this program. If not, see <http://www.gnu.org/licenses/>. Contact info: lobochief@users.sourceforge.net; ivan.difrancesco@yahoo.it */ package org.lobobrowser.html.domimpl; import org.lobobrowser.w3c.html.HTMLCommandElement; /** * The Class HTMLCommandElementImpl. */ public class HTMLCommandElementImpl extends HTMLElementImpl implements HTMLCommandElement { /** * Instantiates a new HTML command element impl. * * @param name * the name */ public HTMLCommandElementImpl(String name) { super(name); // TODO Auto-generated constructor stub } /* * (non-Javadoc) * * @see org.lobobrowser.w3c.html.HTMLCommandElement#getType() */ @Override public String getType() { // TODO Auto-generated method stub return null; } /* * (non-Javadoc) * * @see * org.lobobrowser.w3c.html.HTMLCommandElement#setType(java.lang.String) */ @Override public void setType(String type) { // TODO Auto-generated method stub } /* * (non-Javadoc) * * @see * org.lobobrowser.w3c.html.HTMLCommandElement#setLabel(java.lang.String) */ @Override public void setLabel(String label) { // TODO Auto-generated method stub } /* * (non-Javadoc) * * @see * org.lobobrowser.w3c.html.HTMLCommandElement#setIcon(java.lang.String) */ @Override public void setIcon(String icon) { // TODO Auto-generated method stub } /* * (non-Javadoc) * * @see org.lobobrowser.w3c.html.HTMLCommandElement#setDisabled(boolean) */ @Override public void setDisabled(boolean disabled) { // TODO Auto-generated method stub } /* * (non-Javadoc) * * @see org.lobobrowser.w3c.html.HTMLCommandElement#setChecked(boolean) */ @Override public void setChecked(boolean checked) { // TODO Auto-generated method stub } /* * (non-Javadoc) * * @see org.lobobrowser.w3c.html.HTMLCommandElement#getRadiogroup() */ @Override public String getRadiogroup() { // TODO Auto-generated method stub return null; } /* * (non-Javadoc) * * @see org.lobobrowser.w3c.html.HTMLCommandElement#setRadiogroup(java.lang. * String) */ @Override public void setRadiogroup(String radiogroup) { // TODO Auto-generated method stub } }