~vil/pydev/upstream

« back to all changes in this revision

Viewing changes to org.python.pydev.debug/src/org/python/pydev/debug/model/remote/ICommandResponseListener.java

  • Committer: Vladimír Lapáček
  • Date: 2006-08-30 18:38:44 UTC
  • Revision ID: vladimir.lapacek@gmail.com-20060830183844-f4d82c1239a7770a
Initial import of upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Author: atotic
 
3
 * Created on May 4, 2004
 
4
 * License: Common Public License v1.0
 
5
 */
 
6
package org.python.pydev.debug.model.remote;
 
7
 
 
8
/**
 
9
 * All commands are executed asynchronously.
 
10
 * 
 
11
 * This interface, if specified, is called when command completes.
 
12
 */
 
13
public interface ICommandResponseListener {
 
14
        public void commandComplete(AbstractDebuggerCommand cmd);
 
15
}