blob: d33f8796e107bf0fdf109dfb99119dcd41eb5452 (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
|
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.qt;
public interface TQUrlInterface {
String protocol();
void setProtocol(String protocol);
String user();
void setUser(String user);
boolean hasUser();
String password();
void setPassword(String pass);
boolean hasPassword();
String host();
void setHost(String user);
boolean hasHost();
int port();
void setPort(int port);
boolean hasPort();
String path(boolean correct);
String path();
void setPath(String path);
boolean hasPath();
void setEncodedPathAndQuery(String enc);
String encodedPathAndQuery();
void setQuery(String txt);
String query();
String ref();
void setRef(String txt);
boolean hasRef();
boolean isValid();
boolean isLocalFile();
void addPath(String path);
void setFileName(String txt);
String fileName();
String dirPath();
boolean op_equals(TQUrlInterface url);
boolean op_equals(String url);
String toString(boolean encodedPath, boolean forcePrependProtocol);
String toString(boolean encodedPath);
String toString();
boolean cdUp();
}
|