Package org.hivedb.teamcity.plugin

Examples of org.hivedb.teamcity.plugin.NameAndStatus


          continue;
        else {
          String[] fields = line.split(" ");
          String status = fields[0].trim();
          String name = fields[1].trim();
          changes.add(new NameAndStatus(name, status));
        }
      }
    }
    catch (IOException e) {
      throw new RuntimeException(e);
View Full Code Here


            current.setMessage(current.getMessage() + "\n" + line);
          }
          else {
            Matcher m = nameAndStatus.matcher(line);
            while (m.find()) {
              NameAndStatus change = new NameAndStatus(m.group(2), m.group(1));
              current.getChanges().add(change);
            }
          }
        }
      }
View Full Code Here

TOP

Related Classes of org.hivedb.teamcity.plugin.NameAndStatus

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.