blob: 6baf819b5f9d681a0238bfc4ba06c742168a3b4c (
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
|
//Auto-generated by kalyptus. DO NOT EDIT.
package org.trinitydesktop.koala;
import org.trinitydesktop.qt.Qt;
import org.trinitydesktop.qt.TQMetaObject;
import org.trinitydesktop.qt.QtSupport;
import org.trinitydesktop.qt.TQObject;
import org.trinitydesktop.qt.TQWidget;
/**
*/
public class TDEActionSeparator extends TDEAction {
protected TDEActionSeparator(Class dummy){super((Class) null);}
public native TQMetaObject metaObject();
public native String className();
public TDEActionSeparator(TQObject parent, String name) {
super((Class) null);
newTDEActionSeparator(parent,name);
}
private native void newTDEActionSeparator(TQObject parent, String name);
public TDEActionSeparator(TQObject parent) {
super((Class) null);
newTDEActionSeparator(parent);
}
private native void newTDEActionSeparator(TQObject parent);
public TDEActionSeparator() {
super((Class) null);
newTDEActionSeparator();
}
private native void newTDEActionSeparator();
public native int plug(TQWidget widget, int index);
public native int plug(TQWidget widget);
/** 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();
}
|