1 22 package org.netbeans.lib.cvsclient.response; 23 24 import org.netbeans.lib.cvsclient.event.*; 25 import org.netbeans.lib.cvsclient.util.*; 26 27 31 class OKResponse implements Response { 32 33 42 public void process(LoggedDataInputStream dis, ResponseServices services) 43 throws ResponseException { 44 TerminationEvent termEvent = new TerminationEvent(this, false); 45 services.getEventManager().fireCVSEvent(termEvent); 46 } 47 48 53 public boolean isTerminalResponse() { 54 return true; 55 } 56 } | Popular Tags |