1 22 package org.netbeans.lib.cvsclient.response; 23 24 import java.io.*; 25 26 import org.netbeans.lib.cvsclient.event.*; 27 import org.netbeans.lib.cvsclient.util.*; 28 29 33 class ModuleExpansionResponse implements Response { 34 35 38 public ModuleExpansionResponse() { 39 } 40 41 48 public void process(LoggedDataInputStream dis, ResponseServices services) 49 throws ResponseException { 50 try { 51 final String localPath = dis.readLine(); 52 EventManager em = services.getEventManager(); 53 em.fireCVSEvent(new ModuleExpansionEvent(this, localPath)); 54 } 55 catch (IOException e) { 56 throw new ResponseException(e); 57 } 58 } 59 60 65 public boolean isTerminalResponse() { 66 return false; 67 } 68 } 69 | Popular Tags |