Some simple improvements
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / ltk / core / RenamePropertyInfo.java
index b1c95a7..32a2c8c 100644 (file)
@@ -1,5 +1,6 @@
 // Copyright (c) 2005 by Leif Frenzel. All rights reserved.
 // See http://leiffrenzel.de
+// modified for phpeclipse.de project by axelcl
 package net.sourceforge.phpdt.ltk.core;
 
 import org.eclipse.core.resources.IFile;
@@ -20,22 +21,21 @@ public class RenamePropertyInfo {
   private String oldName;
   // the file that contains the property to be renamed
   private IFile sourceFile;
-  // whether the refactoring should also change the name of the property
-  // in corresponding properties files in the same bundle (i.e. which start
-  // with the same name)
-  private boolean updateBundle;
-  // whether the refactoring should also update properties files in other
+  // whether the refactoring should also change the identifier
+  // in corresponding PHP files in the same project
+  private boolean updateProject;
+  // whether the refactoring should also update PHP files in other
   // projects than the current one
   private boolean allProjects;
-  
-  
+
+
   // interface methods of IRenamePropertyInfo
   ///////////////////////////////////////////
-  
+
   public int getOffset() {
     return offset;
   }
-  
+
   public void setOffset( final int offset ) {
     this.offset = offset;
   }
@@ -72,11 +72,11 @@ public class RenamePropertyInfo {
     this.allProjects = allProjects;
   }
 
-  public boolean isUpdateBundle() {
-    return updateBundle;
+  public boolean isUpdateProject() {
+    return updateProject;
   }
 
-  public void setUpdateBundle( final boolean updateBundle ) {
-    this.updateBundle = updateBundle;
+  public void setUpdateProject( final boolean updateBundle ) {
+    this.updateProject = updateBundle;
   }
 }