Method renamed.

This commit is contained in:
Dmitry Trofimov
2013-09-18 16:34:18 +02:00
parent 3c2c52843f
commit c5fd56d221
6 changed files with 7 additions and 7 deletions

View File

@@ -57,9 +57,9 @@ public abstract class AbstractConsoleCommunication implements ConsoleCommunicati
}
@Override
public void notifyFinished() {
public void notifyCommandExecuted() {
for (ConsoleCommunicationListener listener: communicationListeners) {
listener.executionFinished();
listener.commandExecuted();
}
}

View File

@@ -24,7 +24,7 @@ public interface ConsoleCommunication {
void addCommunicationListener(ConsoleCommunicationListener listener);
void notifyFinished();
void notifyCommandExecuted();
void notifyInputRequested();
}

View File

@@ -4,6 +4,6 @@ package com.jetbrains.python.console.pydev;
* @author traff
*/
public interface ConsoleCommunicationListener {
void executionFinished();
void commandExecuted();
void inputRequested();
}