summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/org/kde/qt/QSignalMapper.java
blob: ddc77bb9bb6b37775f48b53e0f9130739063c6eb (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
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.qt;

import org.kde.qt.Qt;

/**
 See {@link QSignalMapperSignals} for signals emitted by QSignalMapper
*/
public class QSignalMapper extends QObject  {
	protected QSignalMapper(Class dummy){super((Class) null);}
	public native QMetaObject metaObject();
	public native String className();
	public QSignalMapper(QObject parent, String name) {
		super((Class) null);
		newQSignalMapper(parent,name);
	}
	private native void newQSignalMapper(QObject parent, String name);
	public QSignalMapper(QObject parent) {
		super((Class) null);
		newQSignalMapper(parent);
	}
	private native void newQSignalMapper(QObject parent);
	public native void setMapping(QObject sender, int identifier);
	public native void setMapping(QObject sender, String identifier);
	public native void removeMappings(QObject sender);
	public native void map();
	public static native String tr(String arg1, String arg2);
	public static native String tr(String arg1);
	/** 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();
}