Update of /cvsroot/jython/jython/Demo/javaclasses
In directory slayer.i.sourceforge.net:/tmp/cvs-serv22495
Modified Files:
readme.txt
Log Message:
Renamed jpython to jython.
Index: readme.txt
===================================================================
RCS file: /cvsroot/jython/jython/Demo/javaclasses/readme.txt,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** readme.txt 1999/05/27 20:56:56 1.5
--- readme.txt 2000/12/04 21:30:39 1.6
***************
*** 1,3 ****
! This example shows one way to incorporate a JPython class into a Java
program.
--- 1,3 ----
! This example shows one way to incorporate a Jython class into a Java
program.
***************
*** 7,15 ****
translation for Windows.
! 1. run "jpython Graph.py" in this directory
! This is just to make sure the JPython code works on your machine
! 2. run "jpythonc -package pygraph Graph.py" in this directory
This should produce the Java class pygraph.Graph. Because this is
--- 7,15 ----
translation for Windows.
! 1. run "jython Graph.py" in this directory
! This is just to make sure the Jython code works on your machine
! 2. run "jythonc -package pygraph Graph.py" in this directory
This should produce the Java class pygraph.Graph. Because this is
***************
*** 26,31 ****
3. run "javac pygraph/PythonGraph.java"
! You must have both the current directory ('.') and the JPython
! library directory (<install_dir>\jpython.jar) in your CLASSPATH for
this to work.
--- 26,31 ----
3. run "javac pygraph/PythonGraph.java"
! You must have both the current directory ('.') and the Jython
! library directory (<install_dir>\jython.jar) in your CLASSPATH for
this to work.
|