1 19 20 package org.netbeans.lib.cvsclient.event; 21 22 import org.netbeans.lib.cvsclient.command.*; 23 24 29 public class FileInfoEvent extends CVSEvent { 30 33 private final FileInfoContainer infoContainer; 34 35 42 public FileInfoEvent(Object source, FileInfoContainer infoContainer) { 43 super(source); 44 this.infoContainer = infoContainer; 45 } 46 47 51 public FileInfoContainer getInfoContainer() { 52 return infoContainer; 53 } 54 55 60 protected void fireEvent(CVSListener listener) { 61 listener.fileInfoGenerated(this); 62 } 63 } | Popular Tags |