com.hfg.html.InputButton Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com_hfg Show documentation
Show all versions of com_hfg Show documentation
com.hfg xml, html, svg, and bioinformatics utility library
package com.hfg.html;
//------------------------------------------------------------------------------
/**
* Represents a button form element (<input type='button'>) tag.
*
* @author J. Alex Taylor, hairyfatguy.com
*/
//------------------------------------------------------------------------------
// com.hfg XML/HTML Coding Library
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
//
// This library 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
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//
// J. Alex Taylor, President, Founder, CEO, COO, CFO, OOPS hairyfatguy.com
// [email protected]
//------------------------------------------------------------------------------
public class InputButton extends HTMLTagWithFormEvents
{
//###########################################################################
// PRIVATE FIELDS
//###########################################################################
//###########################################################################
// CONSTRUCTORS
//###########################################################################
//--------------------------------------------------------------------------
public InputButton()
{
super(HTML.INPUT);
setAttribute(HTML.TYPE, HTML.BUTTON);
}
//--------------------------------------------------------------------------
public InputButton(String inValue)
{
this();
setValue(inValue);
}
//--------------------------------------------------------------------------
public InputButton(String inName, String inValue)
{
this();
setName(inName);
setValue(inValue);
}
//###########################################################################
// PUBLIC METHODS
//###########################################################################
//--------------------------------------------------------------------------
public InputButton setName(String inValue)
{
setAttribute(HTML.NAME, inValue);
return this;
}
//--------------------------------------------------------------------------
public String getName()
{
return getAttributeValue(HTML.NAME);
}
//--------------------------------------------------------------------------
public InputButton setValue(String inValue)
{
setAttribute(HTML.VALUE, inValue);
return this;
}
//--------------------------------------------------------------------------
public String getValue()
{
return getAttributeValue(HTML.VALUE);
}
// Overrides for HTMLTag setters to allow method chaining.
//--------------------------------------------------------------------------
@Override
public InputButton setId(String inValue)
{
return (InputButton) super.setId(inValue);
}
//--------------------------------------------------------------------------
public InputButton setTitle(String inValue)
{
setAttribute(HTML.TITLE, inValue);
return this;
}
//--------------------------------------------------------------------------
public String getTitle()
{
return getAttributeValue(HTML.TITLE);
}
//--------------------------------------------------------------------------
@Override
public InputButton setStyle(CharSequence inValue)
{
return (InputButton) super.setStyle(inValue);
}
//--------------------------------------------------------------------------
@Override
public InputButton addStyle(String inValue)
{
return (InputButton) super.addStyle(inValue);
}
//--------------------------------------------------------------------------
public InputButton setDisabled(boolean disabled)
{
if (disabled) {
setAttribute(HTML.DISABLED, HTML.DISABLED);
}
else {
removeAttribute(HTML.DISABLED);
}
return this;
}
//--------------------------------------------------------------------------
public boolean isDisabled()
{
return hasAttribute(HTML.DISABLED);
}
// Overrides for HTMLTagWithCoreEvents setters to allow method chaining.
//--------------------------------------------------------------------------
@Override
public InputButton setOnClick(String inValue)
{
return (InputButton) super.setOnClick(inValue);
}
//--------------------------------------------------------------------------
@Override
public InputButton setOnDblClick(String inValue)
{
return (InputButton) super.setOnDblClick(inValue);
}
//--------------------------------------------------------------------------
@Override
public InputButton setOnMouseDown(String inValue)
{
return (InputButton) super.setOnMouseDown(inValue);
}
//--------------------------------------------------------------------------
@Override
public InputButton setOnMouseMove(String inValue)
{
return (InputButton) super.setOnMouseMove(inValue);
}
//--------------------------------------------------------------------------
@Override
public InputButton setOnMouseOut(String inValue)
{
return (InputButton) super.setOnMouseOut(inValue);
}
//--------------------------------------------------------------------------
@Override
public InputButton setOnMouseOver(String inValue)
{
return (InputButton) super.setOnMouseOver(inValue);
}
//--------------------------------------------------------------------------
@Override
public InputButton setOnMouseUp(String inValue)
{
return (InputButton) super.setOnMouseUp(inValue);
}
//--------------------------------------------------------------------------
@Override
public InputButton setOnKeyDown(String inValue)
{
return (InputButton) super.setOnKeyDown(inValue);
}
//--------------------------------------------------------------------------
@Override
public InputButton setOnKeyPress(String inValue)
{
return (InputButton) super.setOnKeyPress(inValue);
}
//--------------------------------------------------------------------------
@Override
public InputButton setOnKeyUp(String inValue)
{
return (InputButton) super.setOnKeyUp(inValue);
}
// Overrides for HTMLTagWithFormEvents setters to allow method chaining.
//--------------------------------------------------------------------------
@Override
public InputButton setOnBlur(String inValue)
{
return (InputButton) super.setOnBlur(inValue);
}
//--------------------------------------------------------------------------
@Override
public InputButton setOnChange(String inValue)
{
return (InputButton) super.setOnChange(inValue);
}
//--------------------------------------------------------------------------
@Override
public InputButton setOnFocus(String inValue)
{
return (InputButton) super.setOnFocus(inValue);
}
}