Package org.infoglue.common.util.cvsclient

Examples of org.infoglue.common.util.cvsclient.HistoryCommandWithCVSListener


    List<String> tags = new ArrayList<String>();
    logger.info("ABOUT TO GET ALL TAGS on module [" + moduleName + "]");
   
      Client client = getClient();
           
      HistoryCommandWithCVSListener command = new HistoryCommandWithCVSListener();
      command.setReportTags(true);
      command.setForAllUsers(true);

    logger.info("CVS COMMAND: " + command.getCVSCommand());
   
    client.executeCommand(command, globalOptions);
      List<MessageEvent> messageEvents = command.getMessageEvents();
      Iterator<MessageEvent> messageEventsIterator = messageEvents.iterator();
      while(messageEventsIterator.hasNext())
      {
        MessageEvent event = messageEventsIterator.next();
        String rawTag = event.getMessage();
View Full Code Here

TOP

Related Classes of org.infoglue.common.util.cvsclient.HistoryCommandWithCVSListener

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.