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.
46 lines
1.4 KiB
46 lines
1.4 KiB
//Auto-generated by kalyptus. DO NOT EDIT.
|
|
package org.trinitydesktop.qt;
|
|
|
|
import org.trinitydesktop.qt.Qt;
|
|
|
|
public class TQSqlField implements QtSupport {
|
|
private long _qt;
|
|
private boolean _allocatedInJavaWorld = true;
|
|
protected TQSqlField(Class dummy){}
|
|
|
|
public TQSqlField(String fieldName, int type) {
|
|
newTQSqlField(fieldName,type);
|
|
}
|
|
private native void newTQSqlField(String fieldName, int type);
|
|
public TQSqlField(String fieldName) {
|
|
newTQSqlField(fieldName);
|
|
}
|
|
private native void newTQSqlField(String fieldName);
|
|
public TQSqlField() {
|
|
newTQSqlField();
|
|
}
|
|
private native void newTQSqlField();
|
|
public TQSqlField(TQSqlField other) {
|
|
newTQSqlField(other);
|
|
}
|
|
private native void newTQSqlField(TQSqlField other);
|
|
public native boolean op_equals(TQSqlField other);
|
|
public native void setValue(TQVariant value);
|
|
public native TQVariant value();
|
|
public native void setName(String name);
|
|
public native String name();
|
|
public native void setNull();
|
|
public native boolean isNull();
|
|
public native void setReadOnly(boolean readOnly);
|
|
public native boolean isReadOnly();
|
|
public native void clear(boolean nullify);
|
|
public native void clear();
|
|
public native int type();
|
|
/** 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();
|
|
}
|