/* ************************************************************************
#
# DivConq
#
# http://divconq.com/
#
# Copyright:
# Copyright 2014 eTimeline, LLC. All rights reserved.
#
# License:
# See the license.txt file in the project's top-level directory for details.
#
# Authors:
# * Andy White
#
************************************************************************ */
package w3.html;
import divconq.web.WebContext;
import divconq.web.dcui.Attributes;
import divconq.web.dcui.HtmlUtil;
import divconq.web.dcui.ICodeTag;
import divconq.web.dcui.MixedElement;
import divconq.web.dcui.Nodes;
import divconq.xml.XElement;
public class TextArea extends MixedElement implements ICodeTag {
public TextArea() {
super();
}
public TextArea(Object... args) {
super(args);
}
@Override
public void parseElement(WebContext ctx, Nodes nodes, XElement xel) {
Attributes attrs = HtmlUtil.initAttrs(xel);
if (xel.hasAttribute("name"))
attrs.add("name", xel.getRawAttribute("name"));
if (xel.hasAttribute("cols"))
attrs.add("cols", xel.getRawAttribute("cols"));
if (xel.hasAttribute("rows"))
attrs.add("rows", xel.getRawAttribute("rows"));
if (xel.hasAttribute("disabled"))
attrs.add("disabled", xel.getRawAttribute("disabled"));
if (xel.hasAttribute("placeholder"))
attrs.add("placeholder", xel.getRawAttribute("placeholder"));
if (xel.hasAttribute("maxlength"))
attrs.add("maxlength", xel.getRawAttribute("maxlength"));
if (xel.hasAttribute("readonly"))
attrs.add("readonly", xel.getRawAttribute("readonly"));
this.myArguments = new Object[] { attrs, ctx.getDomain().parseXml(ctx, xel) };
nodes.add(this);
}
@Override
public void build(WebContext ctx, Object... args) {
super.build(ctx, "textarea", true, args);
}
}