wasCSharpSQLite – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 /*
2 * Command.java
3 *
4 * Interface for Commands that can be added to the Tcl Interpreter.
5 *
6 * Copyright (c) 1997 Sun Microsystems, Inc.
7 *
8 * See the file "license.terms" for information on usage and
9 * redistribution of this file, and for a DISCLAIMER OF ALL
10 * WARRANTIES.
11 *
12 * Included in SQLite3 port to C# for use in testharness only; 2008 Noah B Hart
13 *
14 * RCS @(#) $Id: Command.java,v 1.3 1999/08/05 03:43:27 mo Exp $
15 */
16 using System;
17 namespace tcl.lang
18 {
19  
20 /// <summary> The Command interface specifies the method that a new Tcl command
21 /// must implement. See the createCommand method of the Interp class
22 /// to see how to add a new command to an interperter.
23 /// </summary>
24  
25 public interface Command
26 {
27 TCL.CompletionCode cmdProc( Interp interp, TclObject[] objv ); // Tcl exceptions are thown for Tcl errors.
28 }
29 }