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/HTMLMetaElement.java

83 lines
2.4 KiB

//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;
import org.kde.qt.Qt;
import org.kde.qt.QtSupport;
/**
This contains generic meta-information about the document. See the
<a
href="http://www.w3.org/TR/REC-html40/struct/global.html#edef-META">
META element definition </a> in HTML 4.0.
@short This contains generic meta-information about the document.
*/
public class HTMLMetaElement extends HTMLElement {
protected HTMLMetaElement(Class dummy){super((Class) null);}
public HTMLMetaElement() {
super((Class) null);
newHTMLMetaElement();
}
private native void newHTMLMetaElement();
public HTMLMetaElement(HTMLMetaElement other) {
super((Class) null);
newHTMLMetaElement(other);
}
private native void newHTMLMetaElement(HTMLMetaElement other);
public HTMLMetaElement(Node other) {
super((Class) null);
newHTMLMetaElement(other);
}
private native void newHTMLMetaElement(Node other);
/**
Associated information. See the <a
href="http://www.w3.org/TR/REC-html40/struct/global.html#adef-content">
content attribute definition </a> in HTML 4.0.
@short Associated information.
*/
public native String content();
/**
see content
@short see content
*/
public native void setContent(String arg1);
/**
HTTP response header name. See the <a
href="http://www.w3.org/TR/REC-html40/struct/global.html#adef-http-equiv">
http-equiv attribute definition </a> in HTML 4.0.
@short HTTP response header name.
*/
public native String httpEquiv();
/**
see httpEquiv
@short see httpEquiv
*/
public native void setHttpEquiv(String arg1);
/**
Meta information name. See the <a
href="http://www.w3.org/TR/REC-html40/struct/global.html#adef-name-META">
name attribute definition </a> in HTML 4.0.
@short Meta information name.
*/
public native String name();
/**
see name
@short see name
*/
public native void setName(String arg1);
/**
Select form of content. See the <a
href="http://www.w3.org/TR/REC-html40/struct/global.html#adef-scheme">
scheme attribute definition </a> in HTML 4.0.
@short Select form of content.
*/
public native String scheme();
/**
see scheme
@short see scheme
*/
public native void setScheme(String arg1);
// DOM::HTMLMetaElement* HTMLMetaElement(DOM::HTMLMetaElementImpl* arg1); >>>> NOT CONVERTED
}