Package com.halware.nakedide.eclipse.ext.refact

Examples of com.halware.nakedide.eclipse.ext.refact.CollectionDescriptor


  public RenameCollectionRefactoring(
      IField field, String newFieldName,
      org.eclipse.jdt.internal.corext.refactoring.util.TextChangeManager textChangeManager,
      boolean refactorField) {
    this(textChangeManager, refactorField);
    this.oldCollectionDescriptor = new CollectionDescriptor(field);
    this.newCollectionDescriptor = new CollectionDescriptor(field, newFieldName);
  }
View Full Code Here


      IMethod method, String newMethodName,
      org.eclipse.jdt.internal.corext.refactoring.util.TextChangeManager textChangeManager,
      boolean refactorField) {
    this(textChangeManager, refactorField);
   
    this.oldCollectionDescriptor = new CollectionDescriptor(method);
    this.newCollectionDescriptor = new CollectionDescriptor(method, newMethodName);
  }
View Full Code Here

TOP

Related Classes of com.halware.nakedide.eclipse.ext.refact.CollectionDescriptor

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.