?? filesetfoundevent.java
字號:
package org.sadun.util.polling;
import java.io.File;
/**
* Indicates that the poller has found a set of files matching the polling criteria.
*
* @version 1.0
* @author C. Sadun
*/
public class FileSetFoundEvent extends BaseDirectoryEvent {
private File []files;
FileSetFoundEvent(DirectoryPoller poller, File dir, String []paths) {
super(poller, dir);
this.files=new File[paths.length];
for(int i=0;i<paths.length;i++)
files[i]=new File(dir, paths[i]);
}
public File [] getFiles() { return files; }
}
?? 快捷鍵說明
復制代碼
Ctrl + C
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -