public static CmdLineStatusPartFromXml[] createStatusParts(byte[] cmdLineResults)
     throws CmdLineException {
   CmdLineStatusFromXml[] statuses = CmdLineStatusFromXml.createStatuses(cmdLineResults);
   CmdLineStatusPartFromXml[] result = new CmdLineStatusPartFromXml[statuses.length];
   for (int i = 0; i < statuses.length; i++) {
     result[i] = new CmdLineStatusPartFromXml(statuses[i]);
   }
   return result;
 }
 public String getPath() {
   return status.getPath();
 }
 public SVNStatusKind getRepositoryPropStatus() {
   return status.getRepositoryPropStatus();
 }
 public SVNStatusKind getRepositoryTextStatus() {
   return status.getRepositoryTextStatus();
 }
 public boolean isSwitched() {
   return status.isSwitched();
 }
 public boolean isWcLocked() {
   return status.isWcLocked();
 }
 public boolean isCopied() {
   return status.isCopied();
 }
 public File getFile() {
   return status.getFile();
 }
 private CmdLineStatusPartFromXml(CmdLineStatusFromXml status) {
   super(status.getTextStatus(), status.getPropStatus());
   this.status = status;
 }