1 19 20 package org.netbeans.lib.cvsclient.event; 21 22 30 public class ModuleExpansionEvent extends CVSEvent { 31 34 private String module; 35 36 42 public ModuleExpansionEvent(Object source, String module) { 43 super(source); 44 this.module = module; 45 } 46 47 51 public String getModule() { 52 return module; 53 } 54 55 60 protected void fireEvent(CVSListener listener) { 61 listener.moduleExpanded(this); 62 } 63 } 64 | Popular Tags |