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/tdejava/koala/org/trinitydesktop/koala/HTMLHeadElement.java

46 lines
1.3 KiB

//Auto-generated by kalyptus. DO NOT EDIT.
package org.trinitydesktop.koala;
import org.trinitydesktop.qt.Qt;
import org.trinitydesktop.qt.QtSupport;
/**
Document head information. See the <a
href="http://www.w3.org/TR/REC-html40/struct/global.html#edef-HEAD">
HEAD element definition </a> in HTML 4.0.
@short Document head information.
*/
public class HTMLHeadElement extends HTMLElement {
protected HTMLHeadElement(Class dummy){super((Class) null);}
public HTMLHeadElement() {
super((Class) null);
newHTMLHeadElement();
}
private native void newHTMLHeadElement();
public HTMLHeadElement(HTMLHeadElement other) {
super((Class) null);
newHTMLHeadElement(other);
}
private native void newHTMLHeadElement(HTMLHeadElement other);
public HTMLHeadElement(Node other) {
super((Class) null);
newHTMLHeadElement(other);
}
private native void newHTMLHeadElement(Node other);
/**
URI designating a metadata profile. See the <a
href="http://www.w3.org/TR/REC-html40/struct/global.html#adef-profile">
profile attribute definition </a> in HTML 4.0.
@short URI designating a metadata profile.
*/
public native String profile();
/**
see profile
@short see profile
*/
public native void setProfile(String arg1);
// DOM::HTMLHeadElement* HTMLHeadElement(DOM::HTMLHeadElementImpl* arg1); >>>> NOT CONVERTED
}