Artifact 4ec61bfe96ab1161f37da0ebc997d0dca00d461e:
- File jni/tclJBlend/src/tests/tcljava/javaload/Test4Extension.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: 531) [more...]
/* * Test4Extension.java * * Loads a class from a different classpath * * 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: Test4Extension.java,v 1.1 1999/05/10 04:08:55 dejong Exp $ * */ import tcl.lang.*; public class Test4Extension extends Extension { public void init(Interp interp) { interp.createCommand("test4", new tests.javaload.Test1Cmd()); } }