Artifact 170979278839f905ea960d3be581a76179589732:
- File jni/tclJBlend/src/tests/tcljava/javaload/Test3Cmd.java — part of check-in [5b3c8c763d] at 2019-02-25 06:48:42 on branch trunk — first try of tclJBlend on Android (user: chw size: 498) [more...]
/* * Test3.java * * Copyright (c) 1997 Sun Microsystems, Inc. * * See the file "license.terms" for information on usage and * redistribution of this file, and for a DISCLAIMER OF ALL * WARRANTIES. * * RCS: @(#) $Id: Test3Cmd.java,v 1.1 2006/01/31 00:49:21 mdejong Exp $ * */ package tests.javaload; import tcl.lang.*; public class Test3Cmd implements Command { public void cmdProc(Interp interp, TclObject argv[]) throws TclException { interp.setResult("test works"); } }