You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebindings/kdejava/koala/org/kde/koala/HTMLScriptElement.java

113 lines
3.1 KiB

//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;
import org.kde.qt.Qt;
import org.kde.qt.QtSupport;
/**
Script statements. See the <a
href="http://www.w3.org/TR/REC-html40/interact/scripts.html#edef-SCRIPT">
SCRIPT element definition </a> in HTML 4.0.
@short Script statements.
*/
public class HTMLScriptElement extends HTMLElement {
protected HTMLScriptElement(Class dummy){super((Class) null);}
public HTMLScriptElement() {
super((Class) null);
newHTMLScriptElement();
}
private native void newHTMLScriptElement();
public HTMLScriptElement(HTMLScriptElement other) {
super((Class) null);
newHTMLScriptElement(other);
}
private native void newHTMLScriptElement(HTMLScriptElement other);
public HTMLScriptElement(Node other) {
super((Class) null);
newHTMLScriptElement(other);
}
private native void newHTMLScriptElement(Node other);
/**
The script content of the element.
@short The script content of the element.
*/
public native String text();
/**
see text
@short see text
*/
public native void setText(String arg1);
/**
Reserved for future use.
@short Reserved for future use.
*/
public native String htmlFor();
/**
see htmlFor
@short see htmlFor
*/
public native void setHtmlFor(String arg1);
/**
Reserved for future use.
@short Reserved for future use.
*/
public native String event();
/**
see event
@short see event
*/
public native void setEvent(String arg1);
/**
The character encoding of the linked resource. See the <a
href="http://www.w3.org/TR/REC-html40/struct/links.html#adef-charset">
charset attribute definition </a> in HTML 4.0.
@short The character encoding of the linked resource.
*/
public native String charset();
/**
see charset
@short see charset
*/
public native void setCharset(String arg1);
/**
Indicates that the user agent can defer processing of the
script. See the <a
href="http://www.w3.org/TR/REC-html40/interact/scripts.html#adef-defer">
defer attribute definition </a> in HTML 4.0.
@short Indicates that the user agent can defer processing of the script.
*/
public native boolean defer();
/**
see defer
@short see defer
*/
public native void setDefer(boolean arg1);
/**
URI designating an external script. See the <a
href="http://www.w3.org/TR/REC-html40/interact/scripts.html#adef-src-SCRIPT">
src attribute definition </a> in HTML 4.0.
@short URI designating an external script.
*/
public native String src();
/**
see src
@short see src
*/
public native void setSrc(String arg1);
/**
The content type of the script language. See the <a
href="http://www.w3.org/TR/REC-html40/interact/scripts.html#adef-type-SCRIPT">
type attribute definition </a> in HTML 4.0.
@short The content type of the script language.
*/
public native String type();
/**
see type
@short see type
*/
public native void setType(String arg1);
// DOM::HTMLScriptElement* HTMLScriptElement(DOM::HTMLScriptElementImpl* arg1); >>>> NOT CONVERTED
}