Package org.playframework.playclipse.builder

Examples of org.playframework.playclipse.builder.Renaming


   */
  private Change renamePackage(IProgressMonitor pm) {
    RenameArguments args = getArguments();
    final String newName = args.getNewName();
    if (newName.startsWith(CONTROLLERS) && packageName.startsWith(CONTROLLERS)) {
      PlayBuilder.packageRenamingRefactor(new Renaming(packageName, newName));
      // find out the
      String pathName = packageName.substring(CONTROLLERS.length());
      String tfolder = "app/japidviews/" + pathName.replace('.', '/');
      IFolder folder = project.getFolder(tfolder);
      if (folder.exists()) {
View Full Code Here

TOP

Related Classes of org.playframework.playclipse.builder.Renaming

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.