mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
[228467] Fixed typo in the method name: getTesterTester() to getElementUpdateTester().
This commit is contained in:
parent
159f480771
commit
9af94d7ad1
4 changed files with 5 additions and 5 deletions
|
@ -268,7 +268,7 @@ public class AbstractCachingVMProvider extends AbstractVMProvider implements ICa
|
||||||
}
|
}
|
||||||
|
|
||||||
public void refresh() {
|
public void refresh() {
|
||||||
IElementUpdateTester elementTester = getActiveUpdatePolicy().getTesterTester(ManualUpdatePolicy.REFRESH_EVENT);
|
IElementUpdateTester elementTester = getActiveUpdatePolicy().getElementUpdateTester(ManualUpdatePolicy.REFRESH_EVENT);
|
||||||
|
|
||||||
List<FlushMarkerKey> flushKeys = new LinkedList<FlushMarkerKey>();
|
List<FlushMarkerKey> flushKeys = new LinkedList<FlushMarkerKey>();
|
||||||
|
|
||||||
|
@ -557,7 +557,7 @@ public class AbstractCachingVMProvider extends AbstractVMProvider implements ICa
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void handleEvent(final IVMModelProxy proxyStrategy, final Object event, RequestMonitor rm) {
|
protected void handleEvent(final IVMModelProxy proxyStrategy, final Object event, RequestMonitor rm) {
|
||||||
IElementUpdateTester elementTester = getActiveUpdatePolicy().getTesterTester(event);
|
IElementUpdateTester elementTester = getActiveUpdatePolicy().getElementUpdateTester(event);
|
||||||
|
|
||||||
List<FlushMarkerKey> flushKeys = new LinkedList<FlushMarkerKey>();
|
List<FlushMarkerKey> flushKeys = new LinkedList<FlushMarkerKey>();
|
||||||
|
|
||||||
|
|
|
@ -39,7 +39,7 @@ public class AutomaticUpdatePolicy implements IVMUpdatePolicy {
|
||||||
return "Automatic";
|
return "Automatic";
|
||||||
}
|
}
|
||||||
|
|
||||||
public IElementUpdateTester getTesterTester(Object event) {
|
public IElementUpdateTester getElementUpdateTester(Object event) {
|
||||||
return fgUpdateTester;
|
return fgUpdateTester;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -49,5 +49,5 @@ public interface IVMUpdatePolicy {
|
||||||
/**
|
/**
|
||||||
* Creates an element tester for the given event.
|
* Creates an element tester for the given event.
|
||||||
*/
|
*/
|
||||||
public IElementUpdateTester getTesterTester(Object event);
|
public IElementUpdateTester getElementUpdateTester(Object event);
|
||||||
}
|
}
|
||||||
|
|
|
@ -79,7 +79,7 @@ public class ManualUpdatePolicy implements IVMUpdatePolicy {
|
||||||
return "Manual";
|
return "Manual";
|
||||||
}
|
}
|
||||||
|
|
||||||
public IElementUpdateTester getTesterTester(Object event) {
|
public IElementUpdateTester getElementUpdateTester(Object event) {
|
||||||
if (event.equals(REFRESH_EVENT)) {
|
if (event.equals(REFRESH_EVENT)) {
|
||||||
return fgRefreshUpdateTester;
|
return fgRefreshUpdateTester;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue