1 22 package org.netbeans.lib.cvsclient.event; 23 24 28 public class FileRemovedEvent extends CVSEvent { 29 30 33 protected String path; 34 35 40 public FileRemovedEvent(Object source, String path) { 41 super(source); 42 this.path = path; 43 } 44 45 48 public String getFilePath() { 49 return path; 50 } 51 52 57 protected void fireEvent(CVSListener listener) { 58 listener.fileRemoved(this); 59 } 60 } 61 | Popular Tags |