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

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


  public RenamePropertyRefactoring(
      IField field, String newFieldName,
      org.eclipse.jdt.internal.corext.refactoring.util.TextChangeManager textChangeManager,
      boolean refactorField) {
    this(textChangeManager, refactorField);
    this.oldPropertyDescriptor = new PropertyDescriptor(field);
    this.newPropertyDescriptor = new PropertyDescriptor(field, newFieldName);
  }
View Full Code Here


  public RenamePropertyRefactoring(
      IMethod method, String newMethodName,
      org.eclipse.jdt.internal.corext.refactoring.util.TextChangeManager textChangeManager,
      boolean refactorField) {
    this(textChangeManager, refactorField);
    this.oldPropertyDescriptor = new PropertyDescriptor(method);
    this.newPropertyDescriptor = new PropertyDescriptor(method, newMethodName);
  }
View Full Code Here

TOP

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

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.