Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/corext/refactoring/tagging/IQualifiedNameUpdating.java')
-rw-r--r--bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/corext/refactoring/tagging/IQualifiedNameUpdating.java43
1 files changed, 0 insertions, 43 deletions
diff --git a/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/corext/refactoring/tagging/IQualifiedNameUpdating.java b/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/corext/refactoring/tagging/IQualifiedNameUpdating.java
deleted file mode 100644
index 6e4bb327..00000000
--- a/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/corext/refactoring/tagging/IQualifiedNameUpdating.java
+++ /dev/null
@@ -1,43 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2000, 2007 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.wst.jsdt.internal.corext.refactoring.tagging;
-
-public interface IQualifiedNameUpdating {
-
- /**
- * Performs a dynamic check whether this refactoring object is capable of
- * updating qualified names in non Java files. The return value of this
- * method may change according to the state of the refactoring.
- */
- public boolean canEnableQualifiedNameUpdating();
-
- /**
- * If <code>canEnableQualifiedNameUpdating</code> returns <code>true</code>,
- * then this method is used to ask the refactoring object whether references
- * in non Java files should be updated. This call can be ignored if
- * <code>canEnableQualifiedNameUpdating</code> returns <code>false</code>.
- */
- public boolean getUpdateQualifiedNames();
-
- /**
- * If <code>canEnableQualifiedNameUpdating</code> returns <code>true</code>,
- * then this method is used to inform the refactoring object whether
- * references in non Java files should be updated. This call can be ignored
- * if <code>canEnableQualifiedNameUpdating</code> returns <code>false</code>.
- */
- public void setUpdateQualifiedNames(boolean update);
-
- public String getFilePatterns();
-
- public void setFilePatterns(String patterns);
-}
-
-

Back to the top