01: /*
02: * Test4.java
03: *
04: * Copyright (c) 1997 Sun Microsystems, Inc.
05: *
06: * See the file "license.terms" for information on usage and
07: * redistribution of this file, and for a DISCLAIMER OF ALL
08: * WARRANTIES.
09: *
10: * RCS: @(#) $Id: Test4Cmd.java,v 1.1 2006/01/31 00:49:21 mdejong Exp $
11: *
12: */
13:
14: package tests.javaload;
15:
16: import tcl.lang.*;
17:
18: public class Test4Cmd implements Command {
19: public void cmdProc(Interp interp, TclObject argv[])
20: throws TclException {
21: interp.setResult("test works");
22: }
23: }
|