You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.7 KiB
Java
51 lines
1.7 KiB
Java
//Auto-generated by kalyptus. DO NOT EDIT.
|
|
package org.trinitydesktop.qt;
|
|
|
|
import org.trinitydesktop.qt.Qt;
|
|
|
|
public class TQHostAddress implements QtSupport {
|
|
private long _qt;
|
|
private boolean _allocatedInJavaWorld = true;
|
|
protected TQHostAddress(Class dummy){}
|
|
|
|
public TQHostAddress() {
|
|
newTQHostAddress();
|
|
}
|
|
private native void newTQHostAddress();
|
|
public TQHostAddress(int ip4Addr) {
|
|
newTQHostAddress(ip4Addr);
|
|
}
|
|
private native void newTQHostAddress(int ip4Addr);
|
|
public TQHostAddress(short ip6Addr) {
|
|
newTQHostAddress(ip6Addr);
|
|
}
|
|
private native void newTQHostAddress(short ip6Addr);
|
|
// TQHostAddress* TQHostAddress(const Q_IPV6ADDR& arg1); >>>> NOT CONVERTED
|
|
public TQHostAddress(String address) {
|
|
newTQHostAddress(address);
|
|
}
|
|
private native void newTQHostAddress(String address);
|
|
public TQHostAddress(TQHostAddress arg1) {
|
|
newTQHostAddress(arg1);
|
|
}
|
|
private native void newTQHostAddress(TQHostAddress arg1);
|
|
public native void setAddress(int ip4Addr);
|
|
public native void setAddress(short ip6Addr);
|
|
public native boolean setAddress(String address);
|
|
public native boolean isIp4Addr();
|
|
public native int ip4Addr();
|
|
public native boolean isIPv4Address();
|
|
public native int toIPv4Address();
|
|
public native boolean isIPv6Address();
|
|
// Q_IPV6ADDR toIPv6Address(); >>>> NOT CONVERTED
|
|
public native String toString();
|
|
public native boolean op_equals(TQHostAddress arg1);
|
|
public native boolean isNull();
|
|
/** Deletes the wrapped C++ instance */
|
|
protected native void finalize() throws InternalError;
|
|
/** Delete the wrapped C++ instance ahead of finalize() */
|
|
public native void dispose();
|
|
/** Has the wrapped C++ instance been deleted? */
|
|
public native boolean isDisposed();
|
|
}
|