Package org.netbeans.lib.cvsclient.command.tag

Examples of org.netbeans.lib.cvsclient.command.tag.TagCommand


     
    //------------------------
    // Setup the command
    //------------------------
   
      TagCommand command = new TagCommand();
    command.setBuilder(null);
    command.setRecursive(true);
    command.setTag(aTagName);

    if (aFiles != null)
    {
      logger.info("SETTING FILES: ");
     
      for (int i = 0; i < aFiles.length; i ++)
      {
        logger.info("- " + aFiles[i].getAbsolutePath());
      }
      command.setFiles(aFiles);
    }
   
    logger.info("CVS COMMAND: " + command.getCVSCommand());
   
    //------------------------
    // Execute the command
    //------------------------
View Full Code Here

TOP

Related Classes of org.netbeans.lib.cvsclient.command.tag.TagCommand

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.