1 19 20 package org.netbeans.lib.cvsclient.request; 21 22 27 public class KoptRequest extends Request { 28 29 private final String option; 30 31 34 public KoptRequest(String option) { 35 this.option = option; 36 } 37 38 public String getRequestString() throws UnconfiguredRequestException { 39 return "Kopt " + option + "\n"; } 41 42 public boolean isResponseExpected() { 43 return false; 44 } 45 } 46 | Popular Tags |