com.hfg.html.InputText 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 text input form element (<input type='text'>) 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 InputText extends HTMLTagWithFormEvents
{
//##########################################################################
// CONSTRUCTORS
//##########################################################################
//--------------------------------------------------------------------------
public InputText()
{
super(HTML.INPUT);
setAttribute(HTML.TYPE, "text");
}
//--------------------------------------------------------------------------
public InputText(String inName, String inValue)
{
this();
setName(inName);
setValue(inValue);
}
//##########################################################################
// PUBLIC METHODS
//##########################################################################
//--------------------------------------------------------------------------
public InputText setName(String inValue)
{
setAttribute(HTML.NAME, inValue);
return this;
}
//--------------------------------------------------------------------------
public String getName()
{
return getAttributeValue(HTML.NAME);
}
//--------------------------------------------------------------------------
public InputText setValue(String inValue)
{
setAttribute(HTML.VALUE, inValue);
return this;
}
//--------------------------------------------------------------------------
public String getValue()
{
return getAttributeValue(HTML.VALUE);
}
//--------------------------------------------------------------------------
public InputText setSize(int inValue)
{
setAttribute(HTML.SIZE, Integer.toString(inValue));
return this;
}
//--------------------------------------------------------------------------
public InputText setMaxLength(int inValue)
{
setAttribute(HTML.MAX_LENGTH, Integer.toString(inValue));
return this;
}
//--------------------------------------------------------------------------
public InputText setDisabled(boolean disabled)
{
if (disabled)
{
setAttribute(HTML.DISABLED, HTML.DISABLED);
}
else
{
removeAttribute(HTML.DISABLED);
}
return this;
}
//--------------------------------------------------------------------------
public boolean isDisabled()
{
return hasAttribute(HTML.DISABLED);
}
//--------------------------------------------------------------------------
public InputText setTitle(String inValue)
{
setAttribute(HTML.TITLE, inValue);
return this;
}
//--------------------------------------------------------------------------
public String getTitle()
{
return getAttributeValue(HTML.TITLE);
}
//--------------------------------------------------------------------------
public InputText setPlaceholder(String inValue)
{
setAttribute(HTML.PLACEHOLDER, inValue);
return this;
}
//--------------------------------------------------------------------------
public String getPlaceholder()
{
return getAttributeValue(HTML.PLACEHOLDER);
}
//--------------------------------------------------------------------------
public InputText setOnSelect(String inValue)
{
setAttribute(HTML.ONSELECT, inValue);
return this;
}
//--------------------------------------------------------------------------
public String getOnSelect()
{
return getAttributeValue(HTML.ONSELECT);
}
// Overrides for HTMLTag setters to allow method chaining.
//--------------------------------------------------------------------------
@Override
public InputText setId(String inValue)
{
return (InputText) super.setId(inValue);
}
//--------------------------------------------------------------------------
@Override
public InputText setStyle(CharSequence inValue)
{
return (InputText) super.setStyle(inValue);
}
//--------------------------------------------------------------------------
@Override
public InputText addStyle(String inValue)
{
return (InputText) super.addStyle(inValue);
}
//--------------------------------------------------------------------------
public InputText setOnInput(String inValue)
{
setAttribute(HTML.ONINPUT, inValue);
return this;
}
// Overrides for HTMLTagWithCoreEvents setters to allow method chaining.
//--------------------------------------------------------------------------
@Override
public InputText setOnClick(String inValue)
{
return (InputText) super.setOnClick(inValue);
}
//--------------------------------------------------------------------------
@Override
public InputText setOnDblClick(String inValue)
{
return (InputText) super.setOnDblClick(inValue);
}
//--------------------------------------------------------------------------
@Override
public InputText setOnMouseDown(String inValue)
{
return (InputText) super.setOnMouseDown(inValue);
}
//--------------------------------------------------------------------------
@Override
public InputText setOnMouseMove(String inValue)
{
return (InputText) super.setOnMouseMove(inValue);
}
//--------------------------------------------------------------------------
@Override
public InputText setOnMouseOut(String inValue)
{
return (InputText) super.setOnMouseOut(inValue);
}
//--------------------------------------------------------------------------
@Override
public InputText setOnMouseOver(String inValue)
{
return (InputText) super.setOnMouseOver(inValue);
}
//--------------------------------------------------------------------------
@Override
public InputText setOnMouseUp(String inValue)
{
return (InputText) super.setOnMouseUp(inValue);
}
//--------------------------------------------------------------------------
@Override
public InputText setOnKeyDown(String inValue)
{
return (InputText) super.setOnKeyDown(inValue);
}
//--------------------------------------------------------------------------
@Override
public InputText setOnKeyPress(String inValue)
{
return (InputText) super.setOnKeyPress(inValue);
}
//--------------------------------------------------------------------------
@Override
public InputText setOnKeyUp(String inValue)
{
return (InputText) super.setOnKeyUp(inValue);
}
// Overrides for HTMLTagWithFormEvents setters to allow method chaining.
//--------------------------------------------------------------------------
@Override
public InputText setOnBlur(String inValue)
{
return (InputText) super.setOnBlur(inValue);
}
//--------------------------------------------------------------------------
@Override
public InputText setOnChange(String inValue)
{
return (InputText) super.setOnChange(inValue);
}
//--------------------------------------------------------------------------
@Override
public InputText setOnFocus(String inValue)
{
return (InputText) super.setOnFocus(inValue);
}
//--------------------------------------------------------------------------
@Override
public InputText setAutofocus()
{
return (InputText) super.setAutofocus();
}
}