1 19 20 package org.netbeans.lib.cvsclient.command.checkout; 21 22 import java.io.*; 23 24 import org.netbeans.lib.cvsclient.command.*; 25 26 32 public class ModuleListInformation extends FileInfoContainer { 33 34 private String moduleName; 35 36 private String moduleStatus; 37 38 private final StringBuffer paths = new StringBuffer (); 39 40 private String type; 41 42 public ModuleListInformation() { 43 } 44 45 public String getModuleName() { 46 return moduleName; 47 } 48 49 public void setModuleName(String moduleName) { 50 this.moduleName = moduleName; 51 } 52 53 public String getModuleStatus() { 54 return moduleStatus; 55 } 56 57 public void setModuleStatus(String moduleStatus) { 58 this.moduleStatus = moduleStatus; 59 } 60 61 public String getPaths() { 62 return paths.toString(); 63 } 64 65 public void addPath(String path) { 66 if (paths.length() > 0) { 67 paths.append(' '); 68 } 69 paths.append(path); 70 } 71 72 public File getFile() { 73 return null; 74 } 75 76 public String getType() { 77 return type; 78 } 79 80 public void setType(String type) { 81 this.type = type; 82 } 83 } 84 | Popular Tags |