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

58 lines
1.6 KiB

//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;
import org.kde.qt.Qt;
import org.kde.qt.QtSupport;
/**
Document base URI. See the <a
href="http://www.w3.org/TR/REC-html40/struct/links.html#edef-BASE">
BASE element definition </a> in HTML 4.0.
@short Document base URI.
*/
public class HTMLBaseElement extends HTMLElement {
protected HTMLBaseElement(Class dummy){super((Class) null);}
public HTMLBaseElement() {
super((Class) null);
newHTMLBaseElement();
}
private native void newHTMLBaseElement();
public HTMLBaseElement(HTMLBaseElement other) {
super((Class) null);
newHTMLBaseElement(other);
}
private native void newHTMLBaseElement(HTMLBaseElement other);
public HTMLBaseElement(Node other) {
super((Class) null);
newHTMLBaseElement(other);
}
private native void newHTMLBaseElement(Node other);
/**
The base URI See the <a
href="http://www.w3.org/TR/REC-html40/struct/links.html#adef-href-BASE">
href attribute definition </a> in HTML 4.0.
@short The base URI See the <a href="http://www.
*/
public native String href();
/**
see href
@short see href
*/
public native void setHref(String arg1);
/**
The default target frame. See the <a
href="http://www.w3.org/TR/REC-html40/present/frames.html#adef-target">
target attribute definition </a> in HTML 4.0.
@short The default target frame.
*/
public native String target();
/**
see target
@short see target
*/
public native void setTarget(String arg1);
// DOM::HTMLBaseElement* HTMLBaseElement(DOM::HTMLBaseElementImpl* arg1); >>>> NOT CONVERTED
}