1 16 package org.apache.commons.vfs.events; 17 18 import org.apache.commons.vfs.FileListener; 19 import org.apache.commons.vfs.FileObject; 20 21 24 public class CreateEvent extends AbstractFileChangeEvent 25 { 26 public CreateEvent(final FileObject file) 27 { 28 super(file); 29 } 30 31 public void notify(final FileListener listener) throws Exception  32 { 33 listener.fileCreated(this); 34 } 35 } 36 | Popular Tags |