1 19 package org.netbeans.lib.cvsclient.command.remove; 20 21 import java.io.*; 22 23 import org.netbeans.lib.cvsclient.command.*; 24 25 32 public class RemoveInformation extends FileInfoContainer { 33 private File file; 34 private boolean removed; 35 36 public RemoveInformation() { 37 } 38 39 public File getFile() { 40 return file; 41 } 42 43 public void setFile(File file) { 44 this.file = file; 45 } 46 47 public void setRemoved(boolean rem) { 48 removed = rem; 49 } 50 51 public boolean isRemoved() { 52 return removed; 53 } 54 55 58 public String toString() { 59 StringBuffer buf = new StringBuffer (30); 60 buf.append(" "); buf.append((file != null) 62 ? file.getAbsolutePath() 63 :"null"); return buf.toString(); 65 } 66 } 67 | Popular Tags |