01: /*
02: ItsNat Java Web Application Framework
03: Copyright (C) 2007 Innowhere Software Services S.L., Spanish Company
04: Author: Jose Maria Arranz Santamaria
05:
06: This program is free software: you can redistribute it and/or modify
07: it under the terms of the GNU Affero General Public License as published by
08: the Free Software Foundation, either version 3 of the License, or
09: (at your option) any later version. See the GNU Affero General Public
10: License for more details. See the copy of the GNU Affero General Public License
11: included in this program. If not, see <http://www.gnu.org/licenses/>.
12: */
13:
14: package org.itsnat.impl.comp.html;
15:
16: import org.itsnat.comp.html.ItsNatHTMLInputSubmit;
17: import org.itsnat.core.NameValue;
18: import org.w3c.dom.html.HTMLInputElement;
19:
20: /**
21: * La principal finalidad de este componente es permitir cancelar
22: * el envío del formulario al pulsar el botón
23: * Aunque un tipo "reset" o "submit" generen un reset o submit ante un click dicho evento
24: * no es recogido por el propio botón, es decir onreset y onsubmit no son llamados
25: * (es el <form> el que lo recibe)
26: *
27: * @author jmarranz
28: */
29: public class ItsNatHTMLInputSubmitImpl extends
30: ItsNatHTMLInputButtonTextImpl implements ItsNatHTMLInputSubmit {
31: /**
32: * Creates a new instance of ItsNatHTMLInputButtonTextImpl
33: */
34: public ItsNatHTMLInputSubmitImpl(HTMLInputElement element,
35: NameValue[] artifacts,
36: ItsNatHTMLComponentManagerImpl componentMgr) {
37: super (element, artifacts, componentMgr);
38:
39: init();
40: }
41:
42: public String getExpectedType() {
43: return "submit";
44: }
45:
46: }
|