1 19 20 package org.netbeans.modules.masterfs.providers; 21 22 26 27 public interface InterceptionListener { 28 void beforeCreate(org.openide.filesystems.FileObject parent, String name, boolean isFolder); 29 void createSuccess(org.openide.filesystems.FileObject fo); 30 void createFailure(org.openide.filesystems.FileObject parent, String name, boolean isFolder); 31 void beforeDelete(org.openide.filesystems.FileObject fo); 32 void deleteSuccess(org.openide.filesystems.FileObject fo); 33 void deleteFailure(org.openide.filesystems.FileObject fo); 34 } 35 | Popular Tags |