Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright (c) 2013, 2017, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code 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 Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package com.sun.webkit.dom;
import org.w3c.dom.NodeList;
import org.w3c.dom.html.HTMLButtonElement;
import org.w3c.dom.html.HTMLFormElement;
public class HTMLButtonElementImpl extends HTMLElementImpl implements HTMLButtonElement {
HTMLButtonElementImpl(long peer) {
super(peer);
}
static HTMLButtonElement getImpl(long peer) {
return (HTMLButtonElement)create(peer);
}
// Attributes
public boolean getAutofocus() {
return getAutofocusImpl(getPeer());
}
native static boolean getAutofocusImpl(long peer);
public void setAutofocus(boolean value) {
setAutofocusImpl(getPeer(), value);
}
native static void setAutofocusImpl(long peer, boolean value);
public boolean getDisabled() {
return getDisabledImpl(getPeer());
}
native static boolean getDisabledImpl(long peer);
public void setDisabled(boolean value) {
setDisabledImpl(getPeer(), value);
}
native static void setDisabledImpl(long peer, boolean value);
public HTMLFormElement getForm() {
return HTMLFormElementImpl.getImpl(getFormImpl(getPeer()));
}
native static long getFormImpl(long peer);
public String getFormAction() {
return getFormActionImpl(getPeer());
}
native static String getFormActionImpl(long peer);
public void setFormAction(String value) {
setFormActionImpl(getPeer(), value);
}
native static void setFormActionImpl(long peer, String value);
public String getFormEnctype() {
return getFormEnctypeImpl(getPeer());
}
native static String getFormEnctypeImpl(long peer);
public void setFormEnctype(String value) {
setFormEnctypeImpl(getPeer(), value);
}
native static void setFormEnctypeImpl(long peer, String value);
public String getFormMethod() {
return getFormMethodImpl(getPeer());
}
native static String getFormMethodImpl(long peer);
public void setFormMethod(String value) {
setFormMethodImpl(getPeer(), value);
}
native static void setFormMethodImpl(long peer, String value);
public String getType() {
return getTypeImpl(getPeer());
}
native static String getTypeImpl(long peer);
public void setType(String value) {
setTypeImpl(getPeer(), value);
}
native static void setTypeImpl(long peer, String value);
public boolean getFormNoValidate() {
return getFormNoValidateImpl(getPeer());
}
native static boolean getFormNoValidateImpl(long peer);
public void setFormNoValidate(boolean value) {
setFormNoValidateImpl(getPeer(), value);
}
native static void setFormNoValidateImpl(long peer, boolean value);
public String getFormTarget() {
return getFormTargetImpl(getPeer());
}
native static String getFormTargetImpl(long peer);
public void setFormTarget(String value) {
setFormTargetImpl(getPeer(), value);
}
native static void setFormTargetImpl(long peer, String value);
public String getName() {
return getNameImpl(getPeer());
}
native static String getNameImpl(long peer);
public void setName(String value) {
setNameImpl(getPeer(), value);
}
native static void setNameImpl(long peer, String value);
public String getValue() {
return getValueImpl(getPeer());
}
native static String getValueImpl(long peer);
public void setValue(String value) {
setValueImpl(getPeer(), value);
}
native static void setValueImpl(long peer, String value);
public boolean getWillValidate() {
return getWillValidateImpl(getPeer());
}
native static boolean getWillValidateImpl(long peer);
public String getValidationMessage() {
return getValidationMessageImpl(getPeer());
}
native static String getValidationMessageImpl(long peer);
public NodeList getLabels() {
return NodeListImpl.getImpl(getLabelsImpl(getPeer()));
}
native static long getLabelsImpl(long peer);
public String getAccessKey() {
return getAccessKeyImpl(getPeer());
}
native static String getAccessKeyImpl(long peer);
public void setAccessKey(String value) {
setAccessKeyImpl(getPeer(), value);
}
native static void setAccessKeyImpl(long peer, String value);
// Functions
public boolean checkValidity()
{
return checkValidityImpl(getPeer());
}
native static boolean checkValidityImpl(long peer);
public void setCustomValidity(String error)
{
setCustomValidityImpl(getPeer()
, error);
}
native static void setCustomValidityImpl(long peer
, String error);
public void click()
{
clickImpl(getPeer());
}
native static void clickImpl(long peer);
}