Update of /cvsroot/jsmooth/jsmooth/sample
In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv6644/sample
Modified Files:
build.xml sample.jsmooth
Log Message:
adds the JNI Jsmooth documentation
Index: sample.jsmooth
===================================================================
RCS file: /cvsroot/jsmooth/jsmooth/sample/sample.jsmooth,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** sample.jsmooth 17 May 2007 10:56:15 -0000 1.14
--- sample.jsmooth 18 May 2007 21:35:29 -0000 1.15
***************
*** 40,44 ****
<maximumVersion></maximumVersion>
<minimumVersion>1.3</minimumVersion>
! <skeletonName>Custom Web Download Wrapper</skeletonName>
<skeletonProperties>
<key>Message</key>
--- 40,44 ----
<maximumVersion></maximumVersion>
<minimumVersion>1.3</minimumVersion>
! <skeletonName>Windowed Wrapper</skeletonName>
<skeletonProperties>
<key>Message</key>
***************
*** 47,52 ****
</skeletonProperties>
<skeletonProperties>
! <key>DownloadURL</key>
! <value></value>
</skeletonProperties>
<skeletonProperties>
--- 47,51 ----
</skeletonProperties>
<skeletonProperties>
! <key>URL</key>
</skeletonProperties>
<skeletonProperties>
***************
*** 55,64 ****
</skeletonProperties>
<skeletonProperties>
! <key>Debug</key>
! <value>0</value>
</skeletonProperties>
<skeletonProperties>
! <key>SingleInstance</key>
! <value>0</value>
</skeletonProperties>
</jsmoothproject>
--- 54,67 ----
</skeletonProperties>
<skeletonProperties>
! <key>SingleInstance</key>
! <value>1</value>
</skeletonProperties>
<skeletonProperties>
! <key>JniSmooth</key>
! <value>1</value>
! </skeletonProperties>
! <skeletonProperties>
! <key>Debug</key>
! <value>1</value>
</skeletonProperties>
</jsmoothproject>
Index: build.xml
===================================================================
RCS file: /cvsroot/jsmooth/jsmooth/sample/build.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** build.xml 1 Mar 2007 22:08:32 -0000 1.2
--- build.xml 18 May 2007 21:35:29 -0000 1.3
***************
*** 6,9 ****
--- 6,13 ----
<property name="classes" value="classes"/>
+ <path id="build.class.path">
+ <pathelement path="../skeletons/jnismooth/jnismooth.jar"/>
+ </path>
+
<target name="init">
<!-- Create the time stamp -->
***************
*** 15,19 ****
<target depends="init" name="compile">
<!-- Compile the java code from ${src} into ${classes} -->
! <javac deprecation="yes" destdir="${classes}" srcdir="${src}" source="1.1" target="1.1"/>
</target>
--- 19,25 ----
<target depends="init" name="compile">
<!-- Compile the java code from ${src} into ${classes} -->
! <javac deprecation="yes" destdir="${classes}" srcdir="${src}" source="1.1" target="1.1">
! <classpath refid="build.class.path"/>
! </javac>
</target>
***************
*** 23,26 ****
--- 29,41 ----
</target>
+ <target name="run" depends="dist">
+ <java classname="JSmoothPropertiesDisplayer" fork="yes" >
+ <classpath refid="build.class.path"/>
+ <classpath>
+ <pathelement path="sample.jar"/>
+ </classpath>
+ </java>
+ </target>
+
<target name="clean">
<delete dir="${classes}"/>
|