summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KIDNA.java
blob: 59669668de7eb3fab7abcc28c2ca9b50edfe8ffe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
//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);
}