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.
31 lines
729 B
31 lines
729 B
//import org.kde.qt.TQApplication;
|
|
//import org.kde.qt.TQDir;
|
|
import org.kde.qt.*;
|
|
|
|
public class DirTest {
|
|
public static void main(String[] args)
|
|
{
|
|
TQApplication myapp = new TQApplication(args);
|
|
|
|
TQDir mydir = new TQDir("/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");
|
|
}
|
|
|
|
TQFile myobj = new TQFile();
|
|
Object mytest;
|
|
System.out.println("myobj: " + myobj.toString());
|
|
mytest = (TQDir) Qt.dynamicCast("TQDir", myobj);
|
|
System.out.println("mytest: " + mytest.toString());
|
|
return;
|
|
}
|
|
|
|
static {
|
|
qtjava.initialize();
|
|
}
|
|
}
|