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

31 lines
1.0 KiB

//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;
import org.kde.qt.Qt;
import org.kde.qt.QtSupport;
/**
*/
public class KIDNA {
/**
Converts an International Domain Name <code>idna</code> to
its ASCII representation
If conversion is not possible, an empty string is returned.
@short Converts an International Domain Name <code>idna</code> to its ASCII representation
*/
public static native String toAsciiCString(String idna);
/**
Converts an International Domain Name <code>idna</code> to
its ASCII representation
If conversion is not possible, an empty string is returned.
@short Converts an International Domain Name <code>idna</code> to its ASCII representation
*/
public static native String toAscii(String idna);
/**
Converts an International Domain Name <code>idna</code> to
its UNICODE representation
@short Converts an International Domain Name <code>idna</code> to its UNICODE representation
*/
public static native String toUnicode(String idna);
}