1 22 package org.netbeans.lib.cvsclient.event; 23 24 28 public class FileUpdatedEvent extends CVSEvent { 29 32 protected String path; 33 34 38 public FileUpdatedEvent(Object source, String path) { 39 super(source); 40 this.path = path; 41 } 42 43 46 public String getFilePath() { 47 return path; 48 } 49 50 55 protected void fireEvent(CVSListener listener) { 56 listener.fileUpdated(this); 57 } 58 } | Popular Tags |