summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/test/DirTest.java
blob: 1a694ed08e39840fad7261ece02b9bed1a96408f (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
//import org.kde.qt.QApplication;
//import org.kde.qt.QDir;
import org.kde.qt.*;

public class DirTest {	
	public static void main(String[] args)
	{
		QApplication myapp = new QApplication(args);
		
		QDir mydir = new QDir("/tmp");
		if ( mydir.match(new String [] {"*.bmp", "*.h"}, "foobar.bmp") ) {
			System.out.println("foobar matches");
		}
		
		if ( ! mydir.match(new String[] {"*.bmp", "*.h"}, "baz.cpp") ) {
			System.out.println("baz doesn't match");
		}

		QFile myobj = new QFile();
		Object mytest;
		System.out.println("myobj: " + myobj.toString());
		mytest = (QDir) Qt.dynamicCast("QDir", myobj);
		System.out.println("mytest: " + mytest.toString());
		return;
	}
	
	static {
		qtjava.initialize();
	}
}