01: /*
02: * Test1Extension.java
03: *
04: * Test the loading of a java package.
05: *
06: * Copyright (c) 1997 Sun Microsystems, Inc.
07: *
08: * See the file "license.terms" for information on usage and
09: * redistribution of this file, and for a DISCLAIMER OF ALL
10: * WARRANTIES.
11: *
12: * RCS: @(#) $Id: Test1Extension.java,v 1.1 1999/05/10 04:08:54 dejong Exp $
13: *
14: */
15:
16: package tests.javaload;
17:
18: import tcl.lang.*;
19:
20: public class Test1Extension extends Extension {
21: public void init(Interp interp) {
22: interp.createCommand("test1", new Test1Cmd());
23: }
24: }
|