1 19 package org.netbeans.lib.cvsclient.response; 20 21 import java.io.*; 22 23 import org.netbeans.lib.cvsclient.util.*; 24 25 29 class NotifiedResponse implements Response { 30 37 public void process(LoggedDataInputStream dataInputStream, ResponseServices services) 38 throws ResponseException { 39 try { 40 dataInputStream.readLine(); 41 dataInputStream.readLine(); 42 43 } 44 catch (EOFException ex) { 45 throw new ResponseException(ex, ResponseException.getLocalMessage("CommandException.EndOfFile", null)); } 47 catch (IOException ex) { 48 throw new ResponseException(ex); 49 } 50 } 51 52 57 public boolean isTerminalResponse() { 58 return false; 59 } 60 } 61 | Popular Tags |