diff --git a/samples/java/REBUILD.COMP b/samples/java/REBUILD.COMP
deleted file mode 100755
index 94e4079a5c..0000000000
--- a/samples/java/REBUILD.COMP
+++ /dev/null
@@ -1,103 +0,0 @@
-#! /bin/csh -f
-
-if ( $#argv > 1 ) then
-
- setenv CASROOT $argv[1]
- setenv SAMPLE_ROOT $argv[2]
-
-endif
-
-
-echo " ---------------- "
-echo " Building OpenCASCADE Samples "
-echo " ---------------- "
-echo " "
-echo " "
-
-if (! ($?CASROOT)) then
- echo -n "Please define CASROOT to the folder containing OpenCascade '"'src'"', '"'drv'"' and '"'inc'"' folders. : "
- set nogoodpath = 0
- while ( ${nogoodpath} == 0 )
- set res = $<
- if ( ! (-e ${res}/inc/Standard_Real.hxx ) ) then
- echo -n "${res}/inc/Standard_Real.hxx doesn't exist ; Please try again : "
- else
- setenv CASROOT ${res}
- set nogoodpath = 1
- endif
- end
-endif
-
-## Variable for JAVA
-
-if ( !($?JAVAHOME) ) then
-
- set javanotset = 0
- while ( ${javanotset} == 0 )
- echo -n "JAVAHOME not setted . Please define it : "
- set res = $<
- if (! (-e ${res}/bin/java)) then
- echo "java not found in ${res}/bin"
- else
- # Now we verify if it is really a JDK 1.3
- if ( !(-e ${res}/include/jawt.h ) ) then
- echo " the ${res}/include directory doesn't contains jawt.h"
- echo " it's seems it is not a JDK 1.3 distribution "
- echo " Please try again"
- else
- setenv JAVAHOME ${res}
- set javanotset = 1
- endif
- endif
- end
-
-endif
-
-set REBUILDJAR = No
-echo -n "Do you want to rebuild the JAR file [N] : "
-set res = $<
-if ( ${res} != "" ) then
- if ( ${res} == "Y" ) then
- set REBUILDJAR = Yes
- else
- if ( ${res} == "y" ) then
- set REBUILDJAR = Yes
- endif
- endif
-endif
-
-setenv STATION `uname`
-if (${STATION} == "IRIX64") setenv STATION IRIX
-
-setenv SAMPLE_ROOT `pwd`
-
-foreach pk (ISession ISession2D SampleAISBasicPackage SampleAISDisplayModePackage SampleAISSelectPackage SampleDisplayAnimationPackage SampleGeometryPackage SampleHLRPackage SampleImportExportPackage jcas SampleNativePaint SampleViewer3DPackage SamplesTopologyPackage User)
- echo " compiling .. $pk "
- csh -f ${SAMPLE_ROOT}/adm/${STATION}/$pk.comp
-end
-
-foreach tk (TKNativePaint TKSamples TKSamples2 TKjcas)
-echo " "
-echo " "
-echo " "
-echo " linking .. $tk "
-echo " "
- csh -f ${SAMPLE_ROOT}/adm/${STATION}/$tk.lnk
-end
-
-foreach pk ( SampleAISBasicJni SampleAISDisplayModeJni SampleAISSelectJni SampleDisplayAnimationJni SampleGeometryJni SampleHLRJni SampleImportExportJni SampleViewer3DJni SamplesTopologyJni CASCADESamplesJni )
-echo " "
-echo " compiling .. $pk "
-echo " "
- csh -fx ${SAMPLE_ROOT}/adm/${STATION}/$pk.comp
-echo " "
-echo " linking .. $pk "
-echo " "
- csh -f ${SAMPLE_ROOT}/adm/${STATION}/$pk.lnk
-end
-
-if ( ${REBUILDJAR} == "Yes" ) then
- echo "Building the JAR File "
-# cd java
- csh -f build.csh
-endif
diff --git a/samples/java/RUN.bat b/samples/java/RUN.bat
deleted file mode 100755
index 13ad95b879..0000000000
--- a/samples/java/RUN.bat
+++ /dev/null
@@ -1,50 +0,0 @@
-@ECHO OFF
-
-call "%~dp0env.bat"
-
-IF NOT DEFINED CASROOT GOTO ERR_CASROOT
-
-SET ROOT=%CASROOT%\..
-
-SET SAMPLEHOME=%ROOT%\samples\java
-
-SET LIB_DIR=win32\vc8\lib
-SET JAR_DIR=win32
-
-IF NOT EXIST "%JAR_DIR%\CASCADESamples.jar" GOTO ERR_MAKE
-
-SET OLD_PATH=%PATH%
-set PATH=%~dp0;%SAMPLEHOME%\%LIB_DIR%;%PATH%
-
-IF NOT EXIST "%SAMPLEHOME%\win32\vc8\obj" SET JAVAHOME=%ROOT%\3rdparty\win32\java
-
-IF NOT DEFINED JAVAHOME GOTO ERR_JAVAHOME
-
-SET PATH=%JAVAHOME%\bin;%JAVAHOME%\jre\bin;%JAVAHOME%\jre\bin\client;%PATH%
-
-cd java
-echo "javaw.exe -Xss1m -classpath .;%SAMPLEHOME%\%JAR_DIR%\CASCADESamples.jar SamplesStarter"
-start javaw.exe -Xss1m -classpath .;%SAMPLEHOME%\%JAR_DIR%\CASCADESamples.jar SamplesStarter
-pause
-cd ..
-SET PATH=%OLD_PATH%
-
-GOTO END
-
-:ERR_CASROOT
-ECHO Environment variable "CASROOT" not defined. Abort.
-pause
-GOTO END
-
-:ERR_JAVAHOME
-ECHO Environment variable "JAVAHOME" not defined. Abort.
-pause
-GOTO END
-
-:ERR_MAKE
-ECHO File %JAR_DIR%\CASCADESamples.jar not found."
-ECHO Probably you don't compile the application. Execute %JAR_DIR\build.bat
-pause
-GOTO END
-
-:END
diff --git a/samples/java/adm/Linux/CASCADESamplesJni.comp b/samples/java/adm/Linux/CASCADESamplesJni.comp
deleted file mode 100755
index 7df66401b4..0000000000
--- a/samples/java/adm/Linux/CASCADESamplesJni.comp
+++ /dev/null
@@ -1,102 +0,0 @@
-if (!($?CCHOME)) set CCHOME = "/usr/bin/g++ "
-if (!($?CCFLAGS)) set CCFLAGS = " -fPIC -DLIN -DLININTEL -DCSFDB -DNO_EXCEPTION -funsigned-char -Wall -O3 -DNDEBUG -DNo_Exception "
-
-if (!($?CCINC)) setenv CCINC "."
-
-if (!($?STLPortHome)) then
- setenv STLPortInclude "."
-else
- if (!($?STLPortInclude)) setenv STLPortInclude "$STLPortHome/stlport"
-endif
-
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni
-if (!(-e ${SAMPLE_ROOT}/${STATION}/lib)) mkdir -p ${SAMPLE_ROOT}/${STATION}/lib
-
-
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_AIS_Drawer_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_AIS_Drawer_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_AIS_InteractiveContext_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_AIS_InteractiveContext_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_AIS_InteractiveObject_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_AIS_InteractiveObject_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_AIS_ListOfInteractive_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_AIS_ListOfInteractive_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_AIS_Shape_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_AIS_Shape_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_AspectMarker_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Aspect_AspectMarker_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_Background_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Aspect_Background_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_ColorMap_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Aspect_ColorMap_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_ColorScale_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Aspect_ColorScale_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_Driver_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Aspect_Driver_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_FontMap_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Aspect_FontMap_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_GraphicDevice_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Aspect_GraphicDevice_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_Grid_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Aspect_Grid_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_MarkMap_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Aspect_MarkMap_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_PixMap_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Aspect_PixMap_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_TypeMap_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Aspect_TypeMap_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_WidthMap_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Aspect_WidthMap_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_WindowDriver_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Aspect_WindowDriver_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_Window_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Aspect_Window_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Bnd_Box_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Bnd_Box_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Geom_Transformation_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Geom_Transformation_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_gp_Ax3_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_gp_Ax3_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_gp_Pnt_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_gp_Pnt_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Graphic2d_DisplayList_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Graphic2d_DisplayList_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Graphic2d_GraphicObject_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Graphic2d_GraphicObject_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Graphic2d_View_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Graphic2d_View_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_AspectMarker3d_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_AspectMarker3d_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_DataStructureManager_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_DataStructureManager_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_MaterialAspect_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_MaterialAspect_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_Plotter_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_Plotter_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_Structure_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_Structure_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_StructureManager_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_StructureManager_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_TextureEnv_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_TextureEnv_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_TextureRoot_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_TextureRoot_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_Vector_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_Vector_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_Vertex_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_Vertex_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_ISession2D_InteractiveContext_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_ISession2D_InteractiveContext_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_PlotMgt_PlotterDriver_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_PlotMgt_PlotterDriver_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Prs3d_BasicAspect_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Prs3d_BasicAspect_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Prs3d_Drawer_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Prs3d_Drawer_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Prs3d_LineAspect_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Prs3d_LineAspect_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Prs3d_Presentation_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Prs3d_Presentation_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Prs3d_Projector_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Prs3d_Projector_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_PrsMgr_PresentableObject_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_PrsMgr_PresentableObject_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_PrsMgr_Presentation_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_PrsMgr_Presentation_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_PrsMgr_PresentationManager2d_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_PrsMgr_PresentationManager2d_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_PrsMgr_PresentationManager3d_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_PrsMgr_PresentationManager3d_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_PrsMgr_PresentationManager_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_PrsMgr_PresentationManager_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_PrsMgr_Presentations_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_PrsMgr_Presentations_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Quantity_Color_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Quantity_Color_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Select2D_Projector_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Select2D_Projector_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_SelectBasics_EntityOwner_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_SelectBasics_EntityOwner_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_SelectMgr_EntityOwner_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_SelectMgr_EntityOwner_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_SelectMgr_Filter_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_SelectMgr_Filter_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_SelectMgr_ListOfFilter_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_SelectMgr_ListOfFilter_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_SelectMgr_SelectableObject_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_SelectMgr_SelectableObject_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_SelectMgr_Selection_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_SelectMgr_Selection_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_SelectMgr_SelectionManager_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_SelectMgr_SelectionManager_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_SelectMgr_SequenceOfOwner_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_SelectMgr_SequenceOfOwner_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_SelectMgr_ViewerSelector_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_SelectMgr_ViewerSelector_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Standard_Type_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Standard_Type_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_StdSelect_ViewerSelector3d_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_StdSelect_ViewerSelector3d_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_TColgp_Array1OfPnt2d_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_TColgp_Array1OfPnt2d_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_TCollection_AsciiString_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_TCollection_AsciiString_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_TCollection_BaseSequence_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_TCollection_BaseSequence_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_TCollection_BasicMap_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_TCollection_BasicMap_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_TCollection_ExtendedString_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_TCollection_ExtendedString_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_TColStd_Array2OfReal_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_TColStd_Array2OfReal_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_TColStd_ListOfInteger_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_TColStd_ListOfInteger_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_TColStd_ListOfTransient_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_TColStd_ListOfTransient_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_TColStd_MapOfTransient_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_TColStd_MapOfTransient_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_TopLoc_Location_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_TopLoc_Location_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_TopoDS_Shape_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_TopoDS_Shape_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_TopoDS_TShape_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_TopoDS_TShape_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_V2d_Viewer_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_V2d_Viewer_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_V2d_View_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_V2d_View_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_V3d_Light_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_V3d_Light_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_V3d_OrthographicView_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_V3d_OrthographicView_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_V3d_PerspectiveView_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_V3d_PerspectiveView_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_V3d_Plane_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_V3d_Plane_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_V3d_Viewer_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_V3d_Viewer_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_V3d_View_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_V3d_View_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Viewer_Viewer_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Viewer_Viewer_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Viewer_View_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Viewer_View_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Visual3d_View_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Visual3d_View_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Visual3d_ViewManager_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Visual3d_ViewManager_java.o
diff --git a/samples/java/adm/Linux/CASCADESamplesJni.lnk b/samples/java/adm/Linux/CASCADESamplesJni.lnk
deleted file mode 100755
index 19b418495f..0000000000
--- a/samples/java/adm/Linux/CASCADESamplesJni.lnk
+++ /dev/null
@@ -1,135 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME " g++ "
-if (!($?CCFLAGS)) setenv CCFLAGS " -shared "
-
-if (!($?STLPortHome)) then
- setenv STLPortLib "."
-else
- if (!($?STLPortLib_CC)) setenv STLPortLib_CC "stlport_gcc"
- if (!($?STLPortLib)) setenv STLPortLib "$STLPortHome/lib"
- setenv STLPortLib "$STLPortLib -l$STLPortLib_CC"
-endif
-
-${CCHOME} ${CCFLAGS} -o ${SAMPLE_ROOT}/${STATION}/lib//libCASCADESamplesJni.so \
- -L${SAMPLE_ROOT}/${STATION}/lib \
- -L${CASROOT}/${STATION}/lib -L${STLPortLib} \
-\
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_AIS_Drawer_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_AIS_InteractiveContext_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_AIS_InteractiveObject_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_AIS_ListOfInteractive_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_AIS_Shape_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Aspect_AspectMarker_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Aspect_Background_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Aspect_ColorMap_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Aspect_ColorScale_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Aspect_Driver_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Aspect_FontMap_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Aspect_GraphicDevice_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Aspect_Grid_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Aspect_MarkMap_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Aspect_PixMap_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Aspect_TypeMap_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Aspect_WidthMap_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Aspect_WindowDriver_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Aspect_Window_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Bnd_Box_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Geom_Transformation_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_gp_Ax3_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_gp_Pnt_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Graphic2d_DisplayList_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Graphic2d_GraphicObject_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Graphic2d_View_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_AspectMarker3d_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_DataStructureManager_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_MaterialAspect_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_Plotter_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_Structure_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_StructureManager_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_TextureEnv_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_TextureRoot_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_Vector_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_Vertex_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_ISession2D_InteractiveContext_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_PlotMgt_PlotterDriver_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Prs3d_BasicAspect_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Prs3d_Drawer_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Prs3d_LineAspect_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Prs3d_Presentation_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Prs3d_Projector_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_PrsMgr_PresentableObject_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_PrsMgr_Presentation_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_PrsMgr_PresentationManager2d_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_PrsMgr_PresentationManager3d_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_PrsMgr_PresentationManager_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_PrsMgr_Presentations_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Quantity_Color_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Select2D_Projector_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_SelectBasics_EntityOwner_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_SelectMgr_EntityOwner_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_SelectMgr_Filter_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_SelectMgr_ListOfFilter_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_SelectMgr_SelectableObject_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_SelectMgr_Selection_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_SelectMgr_SelectionManager_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_SelectMgr_SequenceOfOwner_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_SelectMgr_ViewerSelector_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Standard_Type_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_StdSelect_ViewerSelector3d_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_TColgp_Array1OfPnt2d_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_TCollection_AsciiString_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_TCollection_BaseSequence_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_TCollection_BasicMap_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_TCollection_ExtendedString_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_TColStd_Array2OfReal_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_TColStd_ListOfInteger_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_TColStd_ListOfTransient_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_TColStd_MapOfTransient_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_TopLoc_Location_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_TopoDS_Shape_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_TopoDS_TShape_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_V2d_Viewer_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_V2d_View_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_V3d_Light_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_V3d_OrthographicView_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_V3d_PerspectiveView_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_V3d_Plane_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_V3d_Viewer_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_V3d_View_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Viewer_Viewer_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Viewer_View_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Visual3d_View_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Visual3d_ViewManager_java.o \
-\
- -lTKjcas \
- -lTKPrim \
- -lTKFillet \
- -lPTKernel \
- -lTKPShape \
- -lTKOffset \
- -lTKShHealing \
- -lTKXSBase \
- -lTKIGES \
- -lTKShapeSchema \
- -lTKSTEP \
- -lTKFeat \
- -lTKSamples \
- -lTKV3d \
- -lTKernel \
- -lTKGeomAlgo \
- -lTKGeomBase \
- -lTKBool \
- -lTKTopAlgo \
- -lTKBRep \
- -lTKV2d \
- -lTKService \
- -lTKHLR \
- -lTKG2d \
- -lTKMath \
- -lTKMesh \
- -lTKG3d \
- ;
- set ld_status=$status
- if ( $?LD_LIBRARY_PATH ) then
- set ld_library_path=$LD_LIBRARY_PATH
- endif
-
diff --git a/samples/java/adm/Linux/ISession.comp b/samples/java/adm/Linux/ISession.comp
deleted file mode 100755
index 042ff5be89..0000000000
--- a/samples/java/adm/Linux/ISession.comp
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/csh -fx
-
-if (!($?CCHOME)) set CCHOME = "/usr/bin/g++ "
-if (!($?CCFLAGS)) set CCFLAGS = " -fPIC -DLIN -DLININTEL -DCSFDB -DNO_EXCEPTION -funsigned-char -Wall -O3 -DNDEBUG -DNo_Exception "
-
-if (!($?CCINC)) set CCINC = "."
-
-if (!($?STLPortHome)) then
- setenv STLPortInclude "."
-else
- if (!($?STLPortInclude)) setenv STLPortInclude "$STLPortHome/stlport"
-endif
-
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/ISession)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/ISession
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/.tmp)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/.tmp
-if (!(-e ${SAMPLE_ROOT}/${STATION}/lib)) mkdir -p ${SAMPLE_ROOT}/${STATION}/lib
-
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/ISession/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/src/ISession/ISession_Point.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/ISession//ISession_Point.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/ISession/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/src/ISession/ISession_Curve.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/ISession//ISession_Curve.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/ISession/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/src/ISession/ISession_Surface.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/ISession//ISession_Surface.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/ISession/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/src/ISession/ISession_Text.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/ISession//ISession_Text.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/ISession/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/src/ISession/ISession_Direction.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/ISession//ISession_Direction.o
diff --git a/samples/java/adm/Linux/ISession2D.comp b/samples/java/adm/Linux/ISession2D.comp
deleted file mode 100755
index 3f4c38b276..0000000000
--- a/samples/java/adm/Linux/ISession2D.comp
+++ /dev/null
@@ -1,21 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/usr/bin/g++ "
-if (!($?CCFLAGS)) setenv CCFLAGS " -fPIC -DLIN -DLININTEL -DCSFDB -DNO_EXCEPTION -funsigned-char -Wall -O3 -DNDEBUG -DNo_Exception "
-
-if (!($?CCINC)) setenv CCINC "."
-
-if (!($?STLPortHome)) then
- setenv STLPortInclude "."
-else
- if (!($?STLPortInclude)) setenv STLPortInclude "$STLPortHome/stlport"
-endif
-
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/ISession2D)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/ISession2D
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/.tmp)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/.tmp
-if (!(-e ${SAMPLE_ROOT}/${STATION}/lib)) mkdir -p ${SAMPLE_ROOT}/${STATION}/lib
-
-
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/ISession2D/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/src/ISession2D/ISession2D_InteractiveContext.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/ISession2D//ISession2D_InteractiveContext.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/ISession2D/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/src/ISession2D/ISession2D_SensitiveCurve.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/ISession2D//ISession2D_SensitiveCurve.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/ISession2D/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/src/ISession2D/ISession2D_Curve.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/ISession2D//ISession2D_Curve.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/ISession2D/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/src/ISession2D/ISession2D_ObjectOwner.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/ISession2D//ISession2D_ObjectOwner.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/ISession2D/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/src/ISession2D/ISession2D_Shape.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/ISession2D//ISession2D_Shape.o
diff --git a/samples/java/adm/Linux/SampleAISBasicJni.comp b/samples/java/adm/Linux/SampleAISBasicJni.comp
deleted file mode 100755
index f7e5909304..0000000000
--- a/samples/java/adm/Linux/SampleAISBasicJni.comp
+++ /dev/null
@@ -1,24 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/usr/bin/g++ "
-if (!($?CCFLAGS)) setenv CCFLAGS " -fPIC -DLIN -DLININTEL -DCSFDB -DNO_EXCEPTION -funsigned-char -Wall -O3 -DNDEBUG -DNo_Exception "
-
-if (!($?CCINC)) setenv CCINC "."
-
-if (!($?STLPortHome)) then
- setenv STLPortInclude "."
-else
- if (!($?STLPortInclude)) setenv STLPortInclude "$STLPortHome/stlport"
-endif
-
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/SampleAISBasicJni)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/SampleAISBasicJni
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/.tmp)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/.tmp
-if (!(-e ${SAMPLE_ROOT}/${STATION}/lib)) mkdir -p ${SAMPLE_ROOT}/${STATION}/lib
-
-
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleAISBasicJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleAISBasicJni/SampleAISBasicJni_AIS_InteractiveContext_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleAISBasicJni/SampleAISBasicJni_AIS_InteractiveContext_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleAISBasicJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleAISBasicJni/SampleAISBasicJni_SampleAISBasicPackage_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleAISBasicJni/SampleAISBasicJni_SampleAISBasicPackage_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleAISBasicJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleAISBasicJni/SampleAISBasicJni_TCollection_AsciiString_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleAISBasicJni/SampleAISBasicJni_TCollection_AsciiString_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleAISBasicJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleAISBasicJni/SampleAISBasicJni_UnitsAPI_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleAISBasicJni/SampleAISBasicJni_UnitsAPI_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleAISBasicJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleAISBasicJni/SampleAISBasicJni_V3d_Viewer_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleAISBasicJni/SampleAISBasicJni_V3d_Viewer_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleAISBasicJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleAISBasicJni/SampleAISBasicJni_V3d_View_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleAISBasicJni/SampleAISBasicJni_V3d_View_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleAISBasicJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleAISBasicJni/SampleAISBasicJni_Viewer_Viewer_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleAISBasicJni/SampleAISBasicJni_Viewer_Viewer_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleAISBasicJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleAISBasicJni/SampleAISBasicJni_Viewer_View_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleAISBasicJni/SampleAISBasicJni_Viewer_View_java.o
diff --git a/samples/java/adm/Linux/SampleAISBasicJni.lnk b/samples/java/adm/Linux/SampleAISBasicJni.lnk
deleted file mode 100755
index a6a03c3f99..0000000000
--- a/samples/java/adm/Linux/SampleAISBasicJni.lnk
+++ /dev/null
@@ -1,58 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "g++ "
-if (!($?CCFLAGS)) setenv CCFLAGS " -shared "
-
-if (!($?STLPortHome)) then
- setenv STLPortLib "."
-else
- if (!($?STLPortLib_CC)) setenv STLPortLib_CC "stlport_gcc"
- if (!($?STLPortLib)) setenv STLPortLib "$STLPortHome/lib"
- setenv STLPortLib "$STLPortLib -l$STLPortLib_CC"
-endif
-
-${CCHOME} ${CCFLAGS} -o ${SAMPLE_ROOT}/${STATION}/lib//libSampleAISBasicJni.so \
- -L${SAMPLE_ROOT}/${STATION}/lib \
- -L${CASROOT}/${STATION}/lib -L${STLPortLib} \
-\
-${SAMPLE_ROOT}/${STATION}/obj/SampleAISBasicJni/SampleAISBasicJni_AIS_InteractiveContext_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleAISBasicJni/SampleAISBasicJni_SampleAISBasicPackage_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleAISBasicJni/SampleAISBasicJni_TCollection_AsciiString_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleAISBasicJni/SampleAISBasicJni_UnitsAPI_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleAISBasicJni/SampleAISBasicJni_V3d_Viewer_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleAISBasicJni/SampleAISBasicJni_V3d_View_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleAISBasicJni/SampleAISBasicJni_Viewer_Viewer_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleAISBasicJni/SampleAISBasicJni_Viewer_View_java.o \
-\
- -lTKFillet \
- -lPTKernel \
- -lTKPShape \
- -lTKOffset \
- -lTKShHealing \
- -lTKXSBase \
- -lTKIGES \
- -lTKCDF \
- -lTKPCAF \
- -lTKShapeSchema \
- -lTKSTEP \
- -lTKFeat \
- -lTKSamples \
- -lTKPrim \
- -lTKjcas \
- -lTKV3d \
- -lTKernel \
- -lTKGeomAlgo \
- -lTKGeomBase \
- -lTKBool \
- -lTKTopAlgo \
- -lTKBRep \
- -lTKHLR \
- -lTKG2d \
- -lTKV2d \
- -lTKService \
- -lTKMath \
- -lTKG3d \
- ;
- set ld_status=$status
- if ( $?LD_LIBRARY_PATH ) then
- set ld_library_path=$LD_LIBRARY_PATH
- endif
-
diff --git a/samples/java/adm/Linux/SampleAISBasicPackage.comp b/samples/java/adm/Linux/SampleAISBasicPackage.comp
deleted file mode 100755
index 5aabc7d819..0000000000
--- a/samples/java/adm/Linux/SampleAISBasicPackage.comp
+++ /dev/null
@@ -1,17 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/usr/bin/g++ "
-if (!($?CCFLAGS)) setenv CCFLAGS " -fPIC -DLIN -DLININTEL -DCSFDB -DNO_EXCEPTION -funsigned-char -Wall -O3 -DNDEBUG -DNo_Exception "
-
-if (!($?CCINC)) setenv CCINC "."
-
-if (!($?STLPortHome)) then
- setenv STLPortInclude "."
-else
- if (!($?STLPortInclude)) setenv STLPortInclude "$STLPortHome/stlport"
-endif
-
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/SampleAISBasicPackage)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/SampleAISBasicPackage
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/.tmp)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/.tmp
-if (!(-e ${SAMPLE_ROOT}/${STATION}/lib)) mkdir -p ${SAMPLE_ROOT}/${STATION}/lib
-
-
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleAISBasicPackage/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/src/SampleAISBasicPackage/SampleAISBasicPackage.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleAISBasicPackage//SampleAISBasicPackage.o
diff --git a/samples/java/adm/Linux/SampleAISDisplayModeJni.comp b/samples/java/adm/Linux/SampleAISDisplayModeJni.comp
deleted file mode 100755
index 0a73c419db..0000000000
--- a/samples/java/adm/Linux/SampleAISDisplayModeJni.comp
+++ /dev/null
@@ -1,24 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/usr/bin/g++ "
-if (!($?CCFLAGS)) setenv CCFLAGS " -fPIC -DLIN -DLININTEL -DCSFDB -DNO_EXCEPTION -funsigned-char -Wall -O3 -DNDEBUG -DNo_Exception "
-
-if (!($?CCINC)) setenv CCINC "."
-
-if (!($?STLPortHome)) then
- setenv STLPortInclude "."
-else
- if (!($?STLPortInclude)) setenv STLPortInclude "$STLPortHome/stlport"
-endif
-
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/SampleAISDisplayModeJni)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/SampleAISDisplayModeJni
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/.tmp)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/.tmp
-if (!(-e ${SAMPLE_ROOT}/${STATION}/lib)) mkdir -p ${SAMPLE_ROOT}/${STATION}/lib
-
-
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleAISDisplayModeJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleAISDisplayModeJni/SampleAISDisplayModeJni_AIS_InteractiveContext_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleAISDisplayModeJni/SampleAISDisplayModeJni_AIS_InteractiveContext_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleAISDisplayModeJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleAISDisplayModeJni/SampleAISDisplayModeJni_Quantity_Color_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleAISDisplayModeJni/SampleAISDisplayModeJni_Quantity_Color_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleAISDisplayModeJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleAISDisplayModeJni/SampleAISDisplayModeJni_SampleAISDisplayModePackage_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleAISDisplayModeJni/SampleAISDisplayModeJni_SampleAISDisplayModePackage_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleAISDisplayModeJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleAISDisplayModeJni/SampleAISDisplayModeJni_TCollection_AsciiString_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleAISDisplayModeJni/SampleAISDisplayModeJni_TCollection_AsciiString_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleAISDisplayModeJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleAISDisplayModeJni/SampleAISDisplayModeJni_V3d_Viewer_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleAISDisplayModeJni/SampleAISDisplayModeJni_V3d_Viewer_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleAISDisplayModeJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleAISDisplayModeJni/SampleAISDisplayModeJni_V3d_View_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleAISDisplayModeJni/SampleAISDisplayModeJni_V3d_View_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleAISDisplayModeJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleAISDisplayModeJni/SampleAISDisplayModeJni_Viewer_Viewer_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleAISDisplayModeJni/SampleAISDisplayModeJni_Viewer_Viewer_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleAISDisplayModeJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleAISDisplayModeJni/SampleAISDisplayModeJni_Viewer_View_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleAISDisplayModeJni/SampleAISDisplayModeJni_Viewer_View_java.o
diff --git a/samples/java/adm/Linux/SampleAISDisplayModeJni.lnk b/samples/java/adm/Linux/SampleAISDisplayModeJni.lnk
deleted file mode 100755
index 0aa380c791..0000000000
--- a/samples/java/adm/Linux/SampleAISDisplayModeJni.lnk
+++ /dev/null
@@ -1,56 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "g++ "
-if (!($?CCFLAGS)) setenv CCFLAGS " -shared "
-
-if (!($?STLPortHome)) then
- setenv STLPortLib "."
-else
- if (!($?STLPortLib_CC)) setenv STLPortLib_CC "stlport_gcc"
- if (!($?STLPortLib)) setenv STLPortLib "$STLPortHome/lib"
- setenv STLPortLib "$STLPortLib -l$STLPortLib_CC"
-endif
-
-${CCHOME} ${CCFLAGS} -o ${SAMPLE_ROOT}/${STATION}/lib//libSampleAISDisplayModeJni.so \
- -L${SAMPLE_ROOT}/${STATION}/lib \
- -L${CASROOT}/${STATION}/lib -L${STLPortLib} \
-\
-${SAMPLE_ROOT}/${STATION}/obj/SampleAISDisplayModeJni/SampleAISDisplayModeJni_AIS_InteractiveContext_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleAISDisplayModeJni/SampleAISDisplayModeJni_Quantity_Color_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleAISDisplayModeJni/SampleAISDisplayModeJni_SampleAISDisplayModePackage_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleAISDisplayModeJni/SampleAISDisplayModeJni_TCollection_AsciiString_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleAISDisplayModeJni/SampleAISDisplayModeJni_V3d_Viewer_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleAISDisplayModeJni/SampleAISDisplayModeJni_V3d_View_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleAISDisplayModeJni/SampleAISDisplayModeJni_Viewer_Viewer_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleAISDisplayModeJni/SampleAISDisplayModeJni_Viewer_View_java.o \
-\
- -lTKjcas \
- -lTKFillet \
- -lPTKernel \
- -lTKPShape \
- -lTKOffset \
- -lTKShHealing \
- -lTKXSBase \
- -lTKIGES \
- -lTKShapeSchema \
- -lTKSTEP \
- -lTKFeat \
- -lTKSamples \
- -lTKV3d \
- -lTKernel \
- -lTKGeomAlgo \
- -lTKGeomBase \
- -lTKPrim \
- -lTKBool \
- -lTKTopAlgo \
- -lTKBRep \
- -lTKHLR \
- -lTKG2d \
- -lTKV2d \
- -lTKService \
- -lTKMath \
- -lTKG3d \
- ;
- set ld_status=$status
- if ( $?LD_LIBRARY_PATH ) then
- set ld_library_path=$LD_LIBRARY_PATH
- endif
-
diff --git a/samples/java/adm/Linux/SampleAISDisplayModePackage.comp b/samples/java/adm/Linux/SampleAISDisplayModePackage.comp
deleted file mode 100755
index 5fd09598c8..0000000000
--- a/samples/java/adm/Linux/SampleAISDisplayModePackage.comp
+++ /dev/null
@@ -1,17 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/usr/bin/g++ "
-if (!($?CCFLAGS)) setenv CCFLAGS " -fPIC -DLIN -DLININTEL -DCSFDB -DNO_EXCEPTION -funsigned-char -Wall -O3 -DNDEBUG -DNo_Exception "
-
-if (!($?CCINC)) setenv CCINC "."
-
-if (!($?STLPortHome)) then
- setenv STLPortInclude "."
-else
- if (!($?STLPortInclude)) setenv STLPortInclude "$STLPortHome/stlport"
-endif
-
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/SampleAISDisplayModePackage)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/SampleAISDisplayModePackage
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/.tmp)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/.tmp
-if (!(-e ${SAMPLE_ROOT}/${STATION}/lib)) mkdir -p ${SAMPLE_ROOT}/${STATION}/lib
-
-
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleAISDisplayModePackage/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/src/SampleAISDisplayModePackage/SampleAISDisplayModePackage.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleAISDisplayModePackage/SampleAISDisplayModePackage.o
diff --git a/samples/java/adm/Linux/SampleAISSelectJni.comp b/samples/java/adm/Linux/SampleAISSelectJni.comp
deleted file mode 100755
index c1297d53e5..0000000000
--- a/samples/java/adm/Linux/SampleAISSelectJni.comp
+++ /dev/null
@@ -1,25 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/usr/bin/g++ "
-if (!($?CCFLAGS)) setenv CCFLAGS " -fPIC -DLIN -DLININTEL -DCSFDB -DNO_EXCEPTION -funsigned-char -Wall -O3 -DNDEBUG -DNo_Exception "
-
-if (!($?CCINC)) setenv CCINC "."
-
-if (!($?STLPortHome)) then
- setenv STLPortInclude "."
-else
- if (!($?STLPortInclude)) setenv STLPortInclude "$STLPortHome/stlport"
-endif
-
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/SampleAISSelectJni)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/SampleAISSelectJni
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/.tmp)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/.tmp
-if (!(-e ${SAMPLE_ROOT}/${STATION}/lib)) mkdir -p ${SAMPLE_ROOT}/${STATION}/lib
-
-
-
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleAISSelectJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleAISSelectJni/SampleAISSelectJni_AIS_InteractiveContext_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleAISSelectJni/SampleAISSelectJni_AIS_InteractiveContext_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleAISSelectJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleAISSelectJni/SampleAISSelectJni_Quantity_Color_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleAISSelectJni/SampleAISSelectJni_Quantity_Color_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleAISSelectJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleAISSelectJni/SampleAISSelectJni_SampleAISSelectPackage_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleAISSelectJni/SampleAISSelectJni_SampleAISSelectPackage_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleAISSelectJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleAISSelectJni/SampleAISSelectJni_TCollection_AsciiString_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleAISSelectJni/SampleAISSelectJni_TCollection_AsciiString_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleAISSelectJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleAISSelectJni/SampleAISSelectJni_V3d_Viewer_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleAISSelectJni/SampleAISSelectJni_V3d_Viewer_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleAISSelectJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleAISSelectJni/SampleAISSelectJni_V3d_View_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleAISSelectJni/SampleAISSelectJni_V3d_View_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleAISSelectJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleAISSelectJni/SampleAISSelectJni_Viewer_Viewer_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleAISSelectJni/SampleAISSelectJni_Viewer_Viewer_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleAISSelectJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleAISSelectJni/SampleAISSelectJni_Viewer_View_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleAISSelectJni/SampleAISSelectJni_Viewer_View_java.o
diff --git a/samples/java/adm/Linux/SampleAISSelectJni.lnk b/samples/java/adm/Linux/SampleAISSelectJni.lnk
deleted file mode 100755
index 4edf15793f..0000000000
--- a/samples/java/adm/Linux/SampleAISSelectJni.lnk
+++ /dev/null
@@ -1,58 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "g++"
-if (!($?CCFLAGS)) setenv CCFLAGS " -shared "
-
-if (!($?STLPortHome)) then
- setenv STLPortLib "."
-else
- if (!($?STLPortLib_CC)) setenv STLPortLib_CC "stlport_gcc"
- if (!($?STLPortLib)) setenv STLPortLib "$STLPortHome/lib"
- setenv STLPortLib "$STLPortLib -l$STLPortLib_CC"
-endif
-
-${CCHOME} ${CCFLAGS} -o ${SAMPLE_ROOT}/${STATION}/lib//libSampleAISSelectJni.so \
- -L${SAMPLE_ROOT}/${STATION}/lib \
- -L${CASROOT}/${STATION}/lib -L${STLPortLib} \
-\
-${SAMPLE_ROOT}/${STATION}/obj/SampleAISSelectJni/SampleAISSelectJni_AIS_InteractiveContext_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleAISSelectJni/SampleAISSelectJni_Quantity_Color_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleAISSelectJni/SampleAISSelectJni_SampleAISSelectPackage_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleAISSelectJni/SampleAISSelectJni_TCollection_AsciiString_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleAISSelectJni/SampleAISSelectJni_V3d_Viewer_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleAISSelectJni/SampleAISSelectJni_V3d_View_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleAISSelectJni/SampleAISSelectJni_Viewer_Viewer_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleAISSelectJni/SampleAISSelectJni_Viewer_View_java.o \
-\
- -lPTKernel \
- -lTKPShape \
- -lTKOffset \
- -lTKShHealing \
- -lTKXSBase \
- -lTKIGES \
- -lTKCDF \
- -lTKPCAF \
- -lTKShapeSchema \
- -lTKSTEP \
- -lTKFeat \
- -lTKSamples \
- -lTKFillet \
- -lTKGeomAlgo \
- -lTKPrim \
- -lTKBool \
- -lTKjcas \
- -lTKV3d \
- -lTKernel \
- -lTKGeomBase \
- -lTKTopAlgo \
- -lTKBRep \
- -lTKHLR \
- -lTKG2d \
- -lTKV2d \
- -lTKService \
- -lTKMath \
- -lTKG3d \
- ;
- set ld_status=$status
- if ( $?LD_LIBRARY_PATH ) then
- set ld_library_path=$LD_LIBRARY_PATH
- endif
-
diff --git a/samples/java/adm/Linux/SampleAISSelectPackage.comp b/samples/java/adm/Linux/SampleAISSelectPackage.comp
deleted file mode 100755
index fbbceed66e..0000000000
--- a/samples/java/adm/Linux/SampleAISSelectPackage.comp
+++ /dev/null
@@ -1,17 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/usr/bin/g++ "
-if (!($?CCFLAGS)) setenv CCFLAGS " -fPIC -DLIN -DLININTEL -DCSFDB -DNO_EXCEPTION -funsigned-char -Wall -O3 -DNDEBUG -DNo_Exception "
-
-if (!($?CCINC)) setenv CCINC "."
-
-if (!($?STLPortHome)) then
- setenv STLPortInclude "."
-else
- if (!($?STLPortInclude)) setenv STLPortInclude "$STLPortHome/stlport"
-endif
-
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/SampleAISSelectPackage)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/SampleAISSelectPackage
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/.tmp)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/.tmp
-if (!(-e ${SAMPLE_ROOT}/${STATION}/lib)) mkdir -p ${SAMPLE_ROOT}/${STATION}/lib
-
-
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleAISSelectPackage/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/src/SampleAISSelectPackage/SampleAISSelectPackage.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleAISSelectPackage/SampleAISSelectPackage.o
diff --git a/samples/java/adm/Linux/SampleDisplayAnimationJni.comp b/samples/java/adm/Linux/SampleDisplayAnimationJni.comp
deleted file mode 100755
index f99223a43d..0000000000
--- a/samples/java/adm/Linux/SampleDisplayAnimationJni.comp
+++ /dev/null
@@ -1,22 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/usr/bin/g++ "
-if (!($?CCFLAGS)) setenv CCFLAGS " -fPIC -DLIN -DLININTEL -DCSFDB -DNO_EXCEPTION -funsigned-char -Wall -O3 -DNDEBUG -DNo_Exception "
-
-if (!($?CCINC)) setenv CCINC "."
-
-if (!($?STLPortHome)) then
- setenv STLPortInclude "."
-else
- if (!($?STLPortInclude)) setenv STLPortInclude "$STLPortHome/stlport"
-endif
-
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/SampleDisplayAnimationJni)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/SampleDisplayAnimationJni
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/.tmp)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/.tmp
-if (!(-e ${SAMPLE_ROOT}/${STATION}/lib)) mkdir -p ${SAMPLE_ROOT}/${STATION}/lib
-
-
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleDisplayAnimationJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleDisplayAnimationJni/SampleDisplayAnimationJni_AIS_InteractiveContext_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleDisplayAnimationJni/SampleDisplayAnimationJni_AIS_InteractiveContext_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleDisplayAnimationJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleDisplayAnimationJni/SampleDisplayAnimationJni_SampleDisplayAnimationPackage_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleDisplayAnimationJni/SampleDisplayAnimationJni_SampleDisplayAnimationPackage_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleDisplayAnimationJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleDisplayAnimationJni/SampleDisplayAnimationJni_V3d_Viewer_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleDisplayAnimationJni/SampleDisplayAnimationJni_V3d_Viewer_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleDisplayAnimationJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleDisplayAnimationJni/SampleDisplayAnimationJni_V3d_View_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleDisplayAnimationJni/SampleDisplayAnimationJni_V3d_View_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleDisplayAnimationJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleDisplayAnimationJni/SampleDisplayAnimationJni_Viewer_Viewer_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleDisplayAnimationJni/SampleDisplayAnimationJni_Viewer_Viewer_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleDisplayAnimationJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleDisplayAnimationJni/SampleDisplayAnimationJni_Viewer_View_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleDisplayAnimationJni/SampleDisplayAnimationJni_Viewer_View_java.o
diff --git a/samples/java/adm/Linux/SampleDisplayAnimationJni.lnk b/samples/java/adm/Linux/SampleDisplayAnimationJni.lnk
deleted file mode 100755
index a8356fc519..0000000000
--- a/samples/java/adm/Linux/SampleDisplayAnimationJni.lnk
+++ /dev/null
@@ -1,56 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "g++"
-if (!($?CCFLAGS)) setenv CCFLAGS " -shared "
-
-if (!($?STLPortHome)) then
- setenv STLPortLib "."
-else
- if (!($?STLPortLib_CC)) setenv STLPortLib_CC "stlport_gcc"
- if (!($?STLPortLib)) setenv STLPortLib "$STLPortHome/lib"
- setenv STLPortLib "$STLPortLib -l$STLPortLib_CC"
-endif
-
-${CCHOME} ${CCFLAGS} -o ${SAMPLE_ROOT}/${STATION}/lib//libSampleDisplayAnimationJni.so \
- -L${SAMPLE_ROOT}/${STATION}/lib \
- -L${CASROOT}/${STATION}/lib -L${STLPortLib} \
-\
-${SAMPLE_ROOT}/${STATION}/obj/SampleDisplayAnimationJni/SampleDisplayAnimationJni_AIS_InteractiveContext_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleDisplayAnimationJni/SampleDisplayAnimationJni_SampleDisplayAnimationPackage_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleDisplayAnimationJni/SampleDisplayAnimationJni_V3d_Viewer_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleDisplayAnimationJni/SampleDisplayAnimationJni_V3d_View_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleDisplayAnimationJni/SampleDisplayAnimationJni_Viewer_Viewer_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleDisplayAnimationJni/SampleDisplayAnimationJni_Viewer_View_java.o \
-\
- -lTKjcas \
- -lTKPrim \
- -lTKFillet \
- -lPTKernel \
- -lTKPShape \
- -lTKOffset \
- -lTKShHealing \
- -lTKXSBase \
- -lTKIGES \
- -lTKCDF \
- -lTKPCAF \
- -lTKShapeSchema \
- -lTKSTEP \
- -lTKFeat \
- -lTKSamples \
- -lTKV3d \
- -lTKernel \
- -lTKGeomAlgo \
- -lTKGeomBase \
- -lTKBool \
- -lTKTopAlgo \
- -lTKBRep \
- -lTKHLR \
- -lTKG2d \
- -lTKV2d \
- -lTKService \
- -lTKMath \
- -lTKG3d \
-;
- set ld_status=$status
- if ( $?LD_LIBRARY_PATH ) then
- set ld_library_path=$LD_LIBRARY_PATH
- endif
-
diff --git a/samples/java/adm/Linux/SampleDisplayAnimationPackage.comp b/samples/java/adm/Linux/SampleDisplayAnimationPackage.comp
deleted file mode 100755
index eedf663f38..0000000000
--- a/samples/java/adm/Linux/SampleDisplayAnimationPackage.comp
+++ /dev/null
@@ -1,17 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/usr/bin/g++ "
-if (!($?CCFLAGS)) setenv CCFLAGS " -fPIC -DLIN -DLININTEL -DCSFDB -DNO_EXCEPTION -funsigned-char -Wall -O3 -DNDEBUG -DNo_Exception "
-
-if (!($?CCINC)) setenv CCINC "."
-
-if (!($?STLPortHome)) then
- setenv STLPortInclude "."
-else
- if (!($?STLPortInclude)) setenv STLPortInclude "$STLPortHome/stlport"
-endif
-
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/SampleDisplayAnimationPackage)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/SampleDisplayAnimationPackage
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/.tmp)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/.tmp
-if (!(-e ${SAMPLE_ROOT}/${STATION}/lib)) mkdir -p ${SAMPLE_ROOT}/${STATION}/lib
-
-
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleDisplayAnimationPackage/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/src/SampleDisplayAnimationPackage/SampleDisplayAnimationPackage.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleDisplayAnimationPackage/SampleDisplayAnimationPackage.o
diff --git a/samples/java/adm/Linux/SampleGeometryJni.comp b/samples/java/adm/Linux/SampleGeometryJni.comp
deleted file mode 100755
index 066348ec8d..0000000000
--- a/samples/java/adm/Linux/SampleGeometryJni.comp
+++ /dev/null
@@ -1,26 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/usr/bin/g++ "
-if (!($?CCFLAGS)) setenv CCFLAGS " -fPIC -DLIN -DLININTEL -DCSFDB -DNO_EXCEPTION -funsigned-char -Wall -O3 -DNDEBUG -DNo_Exception "
-
-if (!($?CCINC)) setenv CCINC "."
-
-if (!($?STLPortHome)) then
- setenv STLPortInclude "."
-else
- if (!($?STLPortInclude)) setenv STLPortInclude "$STLPortHome/stlport"
-endif
-
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/SampleGeometryJni)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/SampleGeometryJni
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/.tmp)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/.tmp
-if (!(-e ${SAMPLE_ROOT}/${STATION}/lib)) mkdir -p ${SAMPLE_ROOT}/${STATION}/lib
-
-
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleGeometryJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleGeometryJni/SampleGeometryJni_AIS_InteractiveContext_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleGeometryJni/SampleGeometryJni_AIS_InteractiveContext_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleGeometryJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleGeometryJni/SampleGeometryJni_ISession2D_InteractiveContext_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleGeometryJni/SampleGeometryJni_ISession2D_InteractiveContext_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleGeometryJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleGeometryJni/SampleGeometryJni_SampleGeometryPackage_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleGeometryJni/SampleGeometryJni_SampleGeometryPackage_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleGeometryJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleGeometryJni/SampleGeometryJni_TCollection_AsciiString_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleGeometryJni/SampleGeometryJni_TCollection_AsciiString_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleGeometryJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleGeometryJni/SampleGeometryJni_V2d_Viewer_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleGeometryJni/SampleGeometryJni_V2d_Viewer_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleGeometryJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleGeometryJni/SampleGeometryJni_V2d_View_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleGeometryJni/SampleGeometryJni_V2d_View_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleGeometryJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleGeometryJni/SampleGeometryJni_V3d_Viewer_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleGeometryJni/SampleGeometryJni_V3d_Viewer_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleGeometryJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleGeometryJni/SampleGeometryJni_V3d_View_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleGeometryJni/SampleGeometryJni_V3d_View_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleGeometryJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleGeometryJni/SampleGeometryJni_Viewer_Viewer_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleGeometryJni/SampleGeometryJni_Viewer_Viewer_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleGeometryJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleGeometryJni/SampleGeometryJni_Viewer_View_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleGeometryJni/SampleGeometryJni_Viewer_View_java.o
diff --git a/samples/java/adm/Linux/SampleGeometryJni.lnk b/samples/java/adm/Linux/SampleGeometryJni.lnk
deleted file mode 100755
index 15914db2f7..0000000000
--- a/samples/java/adm/Linux/SampleGeometryJni.lnk
+++ /dev/null
@@ -1,58 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "g++ "
-if (!($?CCFLAGS)) setenv CCFLAGS " -shared "
-
-if (!($?STLPortHome)) then
- setenv STLPortLib "."
-else
- if (!($?STLPortLib_CC)) setenv STLPortLib_CC "stlport_gcc"
- if (!($?STLPortLib)) setenv STLPortLib "$STLPortHome/lib"
- setenv STLPortLib "$STLPortLib -l$STLPortLib_CC"
-endif
-
-${CCHOME} ${CCFLAGS} -o ${SAMPLE_ROOT}/${STATION}/lib//libSampleGeometryJni.so \
- -L${SAMPLE_ROOT}/${STATION}/lib \
- -L${CASROOT}/${STATION}/lib -L${STLPortLib} \
-\
-${SAMPLE_ROOT}/${STATION}/obj/SampleGeometryJni/SampleGeometryJni_AIS_InteractiveContext_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleGeometryJni/SampleGeometryJni_ISession2D_InteractiveContext_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleGeometryJni/SampleGeometryJni_SampleGeometryPackage_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleGeometryJni/SampleGeometryJni_TCollection_AsciiString_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleGeometryJni/SampleGeometryJni_V2d_Viewer_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleGeometryJni/SampleGeometryJni_V2d_View_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleGeometryJni/SampleGeometryJni_V3d_Viewer_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleGeometryJni/SampleGeometryJni_V3d_View_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleGeometryJni/SampleGeometryJni_Viewer_Viewer_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleGeometryJni/SampleGeometryJni_Viewer_View_java.o \
-\
- -lTKjcas \
- -lTKPrim \
- -lTKFillet \
- -lPTKernel \
- -lTKPShape \
- -lTKOffset \
- -lTKShHealing \
- -lTKXSBase \
- -lTKIGES \
- -lTKShapeSchema \
- -lTKSTEP \
- -lTKFeat \
- -lTKSamples \
- -lTKGeomAlgo \
- -lTKGeomBase \
- -lTKV3d \
- -lTKernel \
- -lTKBool \
- -lTKTopAlgo \
- -lTKBRep \
- -lTKV2d \
- -lTKService \
- -lTKHLR \
- -lTKG2d \
- -lTKMath \
- -lTKG3d \
-;
- set ld_status=$status
- if ( $?LD_LIBRARY_PATH ) then
- set ld_library_path=$LD_LIBRARY_PATH
- endif
-
diff --git a/samples/java/adm/Linux/SampleGeometryPackage.comp b/samples/java/adm/Linux/SampleGeometryPackage.comp
deleted file mode 100755
index 4a2590b03c..0000000000
--- a/samples/java/adm/Linux/SampleGeometryPackage.comp
+++ /dev/null
@@ -1,17 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/usr/bin/g++ "
-if (!($?CCFLAGS)) setenv CCFLAGS " -fPIC -DLIN -DLININTEL -DCSFDB -DNO_EXCEPTION -funsigned-char -Wall -O3 -DNDEBUG -DNo_Exception "
-
-if (!($?CCINC)) setenv CCINC "."
-
-if (!($?STLPortHome)) then
- setenv STLPortInclude "."
-else
- if (!($?STLPortInclude)) setenv STLPortInclude "$STLPortHome/stlport"
-endif
-
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/SampleGeometryPackage)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/SampleGeometryPackage
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/.tmp)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/.tmp
-if (!(-e ${SAMPLE_ROOT}/${STATION}/lib)) mkdir -p ${SAMPLE_ROOT}/${STATION}/lib
-
-
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleGeometryPackage/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/src/SampleGeometryPackage/SampleGeometryPackage.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleGeometryPackage/SampleGeometryPackage.o
diff --git a/samples/java/adm/Linux/SampleHLRJni.comp b/samples/java/adm/Linux/SampleHLRJni.comp
deleted file mode 100755
index a28870cb9d..0000000000
--- a/samples/java/adm/Linux/SampleHLRJni.comp
+++ /dev/null
@@ -1,56 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/usr/bin/g++ "
-if (!($?CCFLAGS)) setenv CCFLAGS " -fPIC -DLIN -DLININTEL -DCSFDB -DNO_EXCEPTION -funsigned-char -Wall -O3 -DNDEBUG -DNo_Exception "
-
-if (!($?CCINC)) setenv CCINC "."
-
-if (!($?STLPortHome)) then
- setenv STLPortInclude "."
-else
- if (!($?STLPortInclude)) setenv STLPortInclude "$STLPortHome/stlport"
-endif
-
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/.tmp)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/.tmp
-if (!(-e ${SAMPLE_ROOT}/${STATION}/lib)) mkdir -p ${SAMPLE_ROOT}/${STATION}/lib
-
-
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_AIS_InteractiveContext_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_AIS_InteractiveContext_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_Aspect_Background_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_Background_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_Aspect_ColorCubeColorMap_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_ColorCubeColorMap_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_Aspect_ColorMapEntry_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_ColorMapEntry_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_Aspect_ColorMap_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_ColorMap_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_Aspect_ColorRampColorMap_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_ColorRampColorMap_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_Aspect_Driver_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_Driver_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_Aspect_FontMapEntry_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_FontMapEntry_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_Aspect_FontMap_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_FontMap_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_Aspect_FontStyle_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_FontStyle_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_Aspect_GenericColorMap_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_GenericColorMap_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_Aspect_GraphicDevice_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_GraphicDevice_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_Aspect_LineStyle_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_LineStyle_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_Aspect_MarkerStyle_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_MarkerStyle_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_Aspect_MarkMapEntry_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_MarkMapEntry_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_Aspect_MarkMap_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_MarkMap_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_Aspect_TypeMapEntry_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_TypeMapEntry_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_Aspect_TypeMap_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_TypeMap_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_Aspect_WidthMapEntry_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_WidthMapEntry_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_Aspect_WidthMap_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_WidthMap_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_Aspect_WindowDriver_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_WindowDriver_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_Aspect_Window_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_Window_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_ISession2D_InteractiveContext_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_ISession2D_InteractiveContext_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_Quantity_Color_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Quantity_Color_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_SampleHLRPackage_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_SampleHLRPackage_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_Standard_Type_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Standard_Type_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_TCollection_AsciiString_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_TCollection_AsciiString_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_TCollection_ExtendedString_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_TCollection_ExtendedString_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_TColQuantity_Array1OfLength_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_TColQuantity_Array1OfLength_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_TColQuantity_HArray1OfLength_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_TColQuantity_HArray1OfLength_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_TColStd_Array1OfBoolean_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_TColStd_Array1OfBoolean_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_TColStd_Array1OfReal_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_TColStd_Array1OfReal_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_TShort_Array1OfShortReal_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_TShort_Array1OfShortReal_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_V2d_DefaultMap_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_V2d_DefaultMap_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_V2d_Viewer_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_V2d_Viewer_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_V2d_View_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_V2d_View_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_V3d_Viewer_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_V3d_Viewer_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_V3d_View_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_V3d_View_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_Viewer_Viewer_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Viewer_Viewer_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_Viewer_View_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Viewer_View_java.o
diff --git a/samples/java/adm/Linux/SampleHLRJni.lnk b/samples/java/adm/Linux/SampleHLRJni.lnk
deleted file mode 100755
index 833cfa831e..0000000000
--- a/samples/java/adm/Linux/SampleHLRJni.lnk
+++ /dev/null
@@ -1,90 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "g++ "
-if (!($?CCFLAGS)) setenv CCFLAGS " -shared "
-
-if (!($?STLPortHome)) then
- setenv STLPortLib "."
-else
- if (!($?STLPortLib_CC)) setenv STLPortLib_CC "stlport_gcc"
- if (!($?STLPortLib)) setenv STLPortLib "$STLPortHome/lib"
- setenv STLPortLib "$STLPortLib -l$STLPortLib_CC"
-endif
-
-${CCHOME} ${CCFLAGS} -o ${SAMPLE_ROOT}/${STATION}/lib//libSampleHLRJni.so \
- -L${SAMPLE_ROOT}/${STATION}/lib \
- -L${CASROOT}/${STATION}/lib -L${STLPortLib} \
-\
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_AIS_InteractiveContext_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_Background_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_ColorCubeColorMap_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_ColorMapEntry_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_ColorMap_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_ColorRampColorMap_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_Driver_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_FontMapEntry_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_FontMap_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_FontStyle_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_GenericColorMap_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_GraphicDevice_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_LineStyle_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_MarkerStyle_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_MarkMapEntry_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_MarkMap_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_TypeMapEntry_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_TypeMap_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_WidthMapEntry_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_WidthMap_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_WindowDriver_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_Window_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_ISession2D_InteractiveContext_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Quantity_Color_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_SampleHLRPackage_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Standard_Type_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_TCollection_AsciiString_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_TCollection_ExtendedString_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_TColQuantity_Array1OfLength_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_TColQuantity_HArray1OfLength_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_TColStd_Array1OfBoolean_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_TColStd_Array1OfReal_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_TShort_Array1OfShortReal_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_V2d_DefaultMap_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_V2d_Viewer_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_V2d_View_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_V3d_Viewer_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_V3d_View_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Viewer_Viewer_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Viewer_View_java.o \
-\
- -lTKjcas \
- -lTKPrim \
- -lTKFillet \
- -lPTKernel \
- -lTKPShape \
- -lTKOffset \
- -lTKShHealing \
- -lTKXSBase \
- -lTKIGES \
- -lTKCDF \
- -lTKPCAF \
- -lTKShapeSchema \
- -lTKSTEP \
- -lTKFeat \
- -lTKSamples \
- -lTKV3d \
- -lTKernel \
- -lTKGeomAlgo \
- -lTKGeomBase \
- -lTKBool \
- -lTKTopAlgo \
- -lTKBRep \
- -lTKV2d \
- -lTKService \
- -lTKHLR \
- -lTKG2d \
- -lTKMath \
- -lTKG3d \
- ;
- set ld_status=$status
- if ( $?LD_LIBRARY_PATH ) then
- set ld_library_path=$LD_LIBRARY_PATH
- endif
-
diff --git a/samples/java/adm/Linux/SampleHLRPackage.comp b/samples/java/adm/Linux/SampleHLRPackage.comp
deleted file mode 100755
index 3d4e02522c..0000000000
--- a/samples/java/adm/Linux/SampleHLRPackage.comp
+++ /dev/null
@@ -1,17 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/usr/bin/g++ "
-if (!($?CCFLAGS)) setenv CCFLAGS " -fPIC -DLIN -DLININTEL -DCSFDB -DNO_EXCEPTION -funsigned-char -Wall -O3 -DNDEBUG -DNo_Exception "
-
-if (!($?CCINC)) setenv CCINC "."
-
-if (!($?STLPortHome)) then
- setenv STLPortInclude "."
-else
- if (!($?STLPortInclude)) setenv STLPortInclude "$STLPortHome/stlport"
-endif
-
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRPackage)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRPackage
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/.tmp)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/.tmp
-if (!(-e ${SAMPLE_ROOT}/${STATION}/lib)) mkdir -p ${SAMPLE_ROOT}/${STATION}/lib
-
-
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRPackage/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/src/SampleHLRPackage/SampleHLRPackage.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRPackage/SampleHLRPackage.o
diff --git a/samples/java/adm/Linux/SampleImportExportJni.comp b/samples/java/adm/Linux/SampleImportExportJni.comp
deleted file mode 100755
index 677d2330ba..0000000000
--- a/samples/java/adm/Linux/SampleImportExportJni.comp
+++ /dev/null
@@ -1,23 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/usr/bin/g++ "
-if (!($?CCFLAGS)) setenv CCFLAGS " -fPIC -DLIN -DLININTEL -DCSFDB -DNO_EXCEPTION -funsigned-char -Wall -O3 -DNDEBUG -DNo_Exception "
-
-if (!($?CCINC)) setenv CCINC "."
-
-if (!($?STLPortHome)) then
- setenv STLPortInclude "."
-else
- if (!($?STLPortInclude)) setenv STLPortInclude "$STLPortHome/stlport"
-endif
-
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/SampleImportExportJni)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/SampleImportExportJni
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/.tmp)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/.tmp
-if (!(-e ${SAMPLE_ROOT}/${STATION}/lib)) mkdir -p ${SAMPLE_ROOT}/${STATION}/lib
-
-
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleImportExportJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleImportExportJni/SampleImportExportJni_AIS_InteractiveContext_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleImportExportJni/SampleImportExportJni_AIS_InteractiveContext_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleImportExportJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleImportExportJni/SampleImportExportJni_SampleImportExportPackage_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleImportExportJni/SampleImportExportJni_SampleImportExportPackage_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleImportExportJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleImportExportJni/SampleImportExportJni_TCollection_AsciiString_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleImportExportJni/SampleImportExportJni_TCollection_AsciiString_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleImportExportJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleImportExportJni/SampleImportExportJni_V3d_Viewer_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleImportExportJni/SampleImportExportJni_V3d_Viewer_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleImportExportJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleImportExportJni/SampleImportExportJni_V3d_View_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleImportExportJni/SampleImportExportJni_V3d_View_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleImportExportJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleImportExportJni/SampleImportExportJni_Viewer_Viewer_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleImportExportJni/SampleImportExportJni_Viewer_Viewer_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleImportExportJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleImportExportJni/SampleImportExportJni_Viewer_View_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleImportExportJni/SampleImportExportJni_Viewer_View_java.o
diff --git a/samples/java/adm/Linux/SampleImportExportJni.lnk b/samples/java/adm/Linux/SampleImportExportJni.lnk
deleted file mode 100755
index 4bde34e39a..0000000000
--- a/samples/java/adm/Linux/SampleImportExportJni.lnk
+++ /dev/null
@@ -1,57 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "g++ "
-if (!($?CCFLAGS)) setenv CCFLAGS " -shared "
-
-if (!($?STLPortHome)) then
- setenv STLPortLib "."
-else
- if (!($?STLPortLib_CC)) setenv STLPortLib_CC "stlport_gcc"
- if (!($?STLPortLib)) setenv STLPortLib "$STLPortHome/lib"
- setenv STLPortLib "$STLPortLib -l$STLPortLib_CC"
-endif
-
-${CCHOME} ${CCFLAGS} -o ${SAMPLE_ROOT}/${STATION}/lib//libSampleImportExportJni.so \
- -L${SAMPLE_ROOT}/${STATION}/lib \
- -L${CASROOT}/${STATION}/lib -L${STLPortLib} \
-\
-${SAMPLE_ROOT}/${STATION}/obj/SampleImportExportJni/SampleImportExportJni_AIS_InteractiveContext_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleImportExportJni/SampleImportExportJni_SampleImportExportPackage_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleImportExportJni/SampleImportExportJni_TCollection_AsciiString_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleImportExportJni/SampleImportExportJni_V3d_Viewer_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleImportExportJni/SampleImportExportJni_V3d_View_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleImportExportJni/SampleImportExportJni_Viewer_Viewer_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleImportExportJni/SampleImportExportJni_Viewer_View_java.o \
-\
- -lTKFillet \
- -lTKFeat \
- -lTKSamples \
- -lTKPShape \
- -lTKPCAF \
- -lTKCDF \
- -lTKernel \
- -lTKIGES \
- -lPTKernel \
- -lTKjcas \
- -lTKSTEP \
- -lTKXSBase \
- -lTKShHealing \
- -lTKOffset \
- -lTKBool \
- -lTKGeomBase \
- -lTKTopAlgo \
- -lTKPrim \
- -lTKGeomAlgo \
- -lTKV3d \
- -lTKBRep \
- -lTKMesh \
- -lTKHLR \
- -lTKG2d \
- -lTKV2d \
- -lTKService \
- -lTKMath \
- -lTKG3d \
-;
- set ld_status=$status
- if ( $?LD_LIBRARY_PATH ) then
- set ld_library_path=$LD_LIBRARY_PATH
- endif
-
diff --git a/samples/java/adm/Linux/SampleImportExportPackage.comp b/samples/java/adm/Linux/SampleImportExportPackage.comp
deleted file mode 100755
index 53d24c981c..0000000000
--- a/samples/java/adm/Linux/SampleImportExportPackage.comp
+++ /dev/null
@@ -1,17 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/usr/bin/g++ "
-if (!($?CCFLAGS)) setenv CCFLAGS " -fPIC -DLIN -DLININTEL -DCSFDB -DNO_EXCEPTION -funsigned-char -Wall -O3 -DNDEBUG -DNo_Exception "
-
-if (!($?CCINC)) setenv CCINC "."
-
-if (!($?STLPortHome)) then
- setenv STLPortInclude "."
-else
- if (!($?STLPortInclude)) setenv STLPortInclude "$STLPortHome/stlport"
-endif
-
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/SampleImportExportPackage)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/SampleImportExportPackage
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/.tmp)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/.tmp
-if (!(-e ${SAMPLE_ROOT}/${STATION}/lib)) mkdir -p ${SAMPLE_ROOT}/${STATION}/lib
-
-
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleImportExportPackage/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/src/SampleImportExportPackage/SampleImportExportPackage.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleImportExportPackage/SampleImportExportPackage.o
diff --git a/samples/java/adm/Linux/SampleNativePaint.comp b/samples/java/adm/Linux/SampleNativePaint.comp
deleted file mode 100755
index 9657ab9b67..0000000000
--- a/samples/java/adm/Linux/SampleNativePaint.comp
+++ /dev/null
@@ -1,18 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/usr/bin/g++ "
-if (!($?CCFLAGS)) setenv CCFLAGS " -fPIC -DLIN -DLININTEL -DCSFDB -DNO_EXCEPTION -funsigned-char -Wall -O3 -DNDEBUG -DNo_Exception "
-
-if (!($?CCINC)) setenv CCINC "."
-
-if (!($?STLPortHome)) then
- setenv STLPortInclude "."
-else
- if (!($?STLPortInclude)) setenv STLPortInclude "$STLPortHome/stlport"
-endif
-
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/SampleNativePaint)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/SampleNativePaint
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/.tmp)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/.tmp
-if (!(-e ${SAMPLE_ROOT}/${STATION}/lib)) mkdir -p ${SAMPLE_ROOT}/${STATION}/lib
-
-
-${CCHOME} ${CCFLAGS} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -I${STLPortInclude} -I${CCINC} -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleNativePaint/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/src/SampleNativePaint/CASCADEView2d.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleNativePaint/CASCADEView2d.o
-${CCHOME} ${CCFLAGS} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -I${STLPortInclude} -I${CCINC} -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleNativePaint/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/src/SampleNativePaint/CASCADEView3d.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleNativePaint/CASCADEView3d.o
diff --git a/samples/java/adm/Linux/SampleViewer3DJni.comp b/samples/java/adm/Linux/SampleViewer3DJni.comp
deleted file mode 100755
index f4c887ed88..0000000000
--- a/samples/java/adm/Linux/SampleViewer3DJni.comp
+++ /dev/null
@@ -1,46 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/usr/bin/g++ "
-if (!($?CCFLAGS)) setenv CCFLAGS " -fPIC -DLIN -DLININTEL -DCSFDB -DNO_EXCEPTION -funsigned-char -Wall -O3 -DNDEBUG -DNo_Exception "
-
-if (!($?CCINC)) setenv CCINC "."
-
-if (!($?STLPortHome)) then
- setenv STLPortInclude "."
-else
- if (!($?STLPortInclude)) setenv STLPortInclude "$STLPortHome/stlport"
-endif
-
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/.tmp)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/.tmp
-if (!(-e ${SAMPLE_ROOT}/${STATION}/lib)) mkdir -p ${SAMPLE_ROOT}/${STATION}/lib
-
-
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_AIS_InteractiveContext_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_AIS_InteractiveContext_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_AlienImage_AlienImage_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_AlienImage_AlienImage_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_Aspect_Array1OfEdge_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Aspect_Array1OfEdge_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_Aspect_GraphicDriver_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Aspect_GraphicDriver_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Array1OfVertexC_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Array1OfVertexC_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Array1OfVertex_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Array1OfVertex_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Array1OfVertexNC_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Array1OfVertexNC_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Array1OfVertexN_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Array1OfVertexN_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Array1OfVertexNT_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Array1OfVertexNT_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Array2OfVertex_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Array2OfVertex_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Array2OfVertexN_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Array2OfVertexN_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Array2OfVertexNT_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Array2OfVertexNT_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_GraphicDriver_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_GraphicDriver_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_HArray1OfBytes_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_HArray1OfBytes_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Vector_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Vector_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Vertex_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Vertex_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_VertexNC_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_VertexNC_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_VertexN_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_VertexN_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_SampleViewer3DPackage_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_SampleViewer3DPackage_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_Standard_Type_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Standard_Type_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_TCollection_AsciiString_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_TCollection_AsciiString_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_TCollection_ExtendedString_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_TCollection_ExtendedString_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_TColStd_Array1OfInteger_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_TColStd_Array1OfInteger_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_TColStd_Array1OfReal_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_TColStd_Array1OfReal_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_TColStd_Array2OfReal_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_TColStd_Array2OfReal_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_TColStd_HArray1OfReal_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_TColStd_HArray1OfReal_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_V3d_Viewer_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_V3d_Viewer_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_V3d_View_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_V3d_View_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_Viewer_Viewer_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Viewer_Viewer_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_Viewer_View_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Viewer_View_java.o
diff --git a/samples/java/adm/Linux/SampleViewer3DJni.lnk b/samples/java/adm/Linux/SampleViewer3DJni.lnk
deleted file mode 100755
index a1c9be05be..0000000000
--- a/samples/java/adm/Linux/SampleViewer3DJni.lnk
+++ /dev/null
@@ -1,68 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "g++ "
-if (!($?CCFLAGS)) setenv CCFLAGS " -shared "
-
-if (!($?STLPortHome)) then
- setenv STLPortLib "."
-else
- if (!($?STLPortLib_CC)) setenv STLPortLib_CC "stlport_gcc"
- if (!($?STLPortLib)) setenv STLPortLib "$STLPortHome/lib"
- setenv STLPortLib "$STLPortLib -l$STLPortLib_CC"
-endif
-
-${CCHOME} ${CCFLAGS} -o ${SAMPLE_ROOT}/${STATION}/lib//libSampleViewer3DJni.so \
- -L${SAMPLE_ROOT}/${STATION}/lib \
- -L${CASROOT}/${STATION}/lib -L${STLPortLib} \
-\
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_AIS_InteractiveContext_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_AlienImage_AlienImage_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Aspect_Array1OfEdge_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Aspect_GraphicDriver_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Array1OfVertexC_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Array1OfVertex_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Array1OfVertexNC_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Array1OfVertexN_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Array1OfVertexNT_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Array2OfVertex_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Array2OfVertexN_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Array2OfVertexNT_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_GraphicDriver_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_HArray1OfBytes_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Vector_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Vertex_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_VertexNC_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_VertexN_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_SampleViewer3DPackage_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Standard_Type_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_TCollection_AsciiString_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_TCollection_ExtendedString_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_TColStd_Array1OfInteger_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_TColStd_Array1OfReal_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_TColStd_Array2OfReal_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_TColStd_HArray1OfReal_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_V3d_Viewer_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_V3d_View_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Viewer_Viewer_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Viewer_View_java.o \
-\
- -lTKjcas \
- -lTKSamples2 \
- -lTKPrim \
- -lTKV3d \
- -lTKernel \
- -lTKGeomAlgo \
- -lTKGeomBase \
- -lTKBool \
- -lTKTopAlgo \
- -lTKBRep \
- -lTKHLR \
- -lTKG2d \
- -lTKV2d \
- -lTKService \
- -lTKMath \
- -lTKG3d \
-;
- set ld_status=$status
- if ( $?LD_LIBRARY_PATH ) then
- set ld_library_path=$LD_LIBRARY_PATH
- endif
-
diff --git a/samples/java/adm/Linux/SampleViewer3DPackage.comp b/samples/java/adm/Linux/SampleViewer3DPackage.comp
deleted file mode 100755
index bc94af5282..0000000000
--- a/samples/java/adm/Linux/SampleViewer3DPackage.comp
+++ /dev/null
@@ -1,17 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/usr/bin/g++ "
-if (!($?CCFLAGS)) setenv CCFLAGS " -fPIC -DLIN -DLININTEL -DCSFDB -DNO_EXCEPTION -funsigned-char -Wall -O3 -DNDEBUG -DNo_Exception "
-
-if (!($?CCINC)) setenv CCINC "."
-
-if (!($?STLPortHome)) then
- setenv STLPortInclude "."
-else
- if (!($?STLPortInclude)) setenv STLPortInclude "$STLPortHome/stlport"
-endif
-
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DPackage)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DPackage
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/.tmp)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/.tmp
-if (!(-e ${SAMPLE_ROOT}/${STATION}/lib)) mkdir -p ${SAMPLE_ROOT}/${STATION}/lib
-
-
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DPackage/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/src/SampleViewer3DPackage/SampleViewer3DPackage.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DPackage/SampleViewer3DPackage.o
diff --git a/samples/java/adm/Linux/SamplesTopologyJni.comp b/samples/java/adm/Linux/SamplesTopologyJni.comp
deleted file mode 100755
index f073dabc45..0000000000
--- a/samples/java/adm/Linux/SamplesTopologyJni.comp
+++ /dev/null
@@ -1,23 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/usr/bin/g++ "
-if (!($?CCFLAGS)) setenv CCFLAGS " -fPIC -DLIN -DLININTEL -DCSFDB -DNO_EXCEPTION -funsigned-char -Wall -O3 -DNDEBUG -DNo_Exception "
-
-if (!($?CCINC)) setenv CCINC "."
-
-if (!($?STLPortHome)) then
- setenv STLPortInclude "."
-else
- if (!($?STLPortInclude)) setenv STLPortInclude "$STLPortHome/stlport"
-endif
-
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/SamplesTopologyJni)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/SamplesTopologyJni
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/.tmp)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/.tmp
-if (!(-e ${SAMPLE_ROOT}/${STATION}/lib)) mkdir -p ${SAMPLE_ROOT}/${STATION}/lib
-
-
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SamplesTopologyJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SamplesTopologyJni/SamplesTopologyJni_AIS_InteractiveContext_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SamplesTopologyJni/SamplesTopologyJni_AIS_InteractiveContext_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SamplesTopologyJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SamplesTopologyJni/SamplesTopologyJni_SamplesTopologyPackage_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SamplesTopologyJni/SamplesTopologyJni_SamplesTopologyPackage_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SamplesTopologyJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SamplesTopologyJni/SamplesTopologyJni_TCollection_AsciiString_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SamplesTopologyJni/SamplesTopologyJni_TCollection_AsciiString_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SamplesTopologyJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SamplesTopologyJni/SamplesTopologyJni_V3d_Viewer_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SamplesTopologyJni/SamplesTopologyJni_V3d_Viewer_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SamplesTopologyJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SamplesTopologyJni/SamplesTopologyJni_V3d_View_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SamplesTopologyJni/SamplesTopologyJni_V3d_View_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SamplesTopologyJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SamplesTopologyJni/SamplesTopologyJni_Viewer_Viewer_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SamplesTopologyJni/SamplesTopologyJni_Viewer_Viewer_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SamplesTopologyJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SamplesTopologyJni/SamplesTopologyJni_Viewer_View_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SamplesTopologyJni/SamplesTopologyJni_Viewer_View_java.o
diff --git a/samples/java/adm/Linux/SamplesTopologyJni.lnk b/samples/java/adm/Linux/SamplesTopologyJni.lnk
deleted file mode 100755
index a29792cab4..0000000000
--- a/samples/java/adm/Linux/SamplesTopologyJni.lnk
+++ /dev/null
@@ -1,57 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "g++ "
-if (!($?CCFLAGS)) setenv CCFLAGS "-shared "
-
-if (!($?STLPortHome)) then
- setenv STLPortLib "."
-else
- if (!($?STLPortLib_CC)) setenv STLPortLib_CC "stlport_gcc"
- if (!($?STLPortLib)) setenv STLPortLib "$STLPortHome/lib"
- setenv STLPortLib "$STLPortLib -l$STLPortLib_CC"
-endif
-
-${CCHOME} ${CCFLAGS} -o ${SAMPLE_ROOT}/${STATION}/lib//libSamplesTopologyJni.so \
- -L${SAMPLE_ROOT}/${STATION}/lib \
- -L${CASROOT}/${STATION}/lib -L${STLPortLib} \
-\
-${SAMPLE_ROOT}/${STATION}/obj/SamplesTopologyJni/SamplesTopologyJni_AIS_InteractiveContext_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SamplesTopologyJni/SamplesTopologyJni_SamplesTopologyPackage_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SamplesTopologyJni/SamplesTopologyJni_TCollection_AsciiString_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SamplesTopologyJni/SamplesTopologyJni_V3d_Viewer_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SamplesTopologyJni/SamplesTopologyJni_V3d_View_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SamplesTopologyJni/SamplesTopologyJni_Viewer_Viewer_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SamplesTopologyJni/SamplesTopologyJni_Viewer_View_java.o \
-\
- -lTKjcas \
- -lPTKernel \
- -lTKPShape \
- -lTKShHealing \
- -lTKXSBase \
- -lTKIGES \
- -lTKCDF \
- -lTKPCAF \
- -lTKShapeSchema \
- -lTKSTEP \
- -lTKSamples \
- -lTKFeat \
- -lTKOffset \
- -lTKBool \
- -lTKTopAlgo \
- -lTKGeomBase \
- -lTKFillet \
- -lTKGeomAlgo \
- -lTKPrim \
- -lTKV3d \
- -lTKernel \
- -lTKBRep \
- -lTKHLR \
- -lTKV2d \
- -lTKService \
- -lTKG2d \
- -lTKMath \
- -lTKG3d \
-;
- set ld_status=$status
- if ( $?LD_LIBRARY_PATH ) then
- set ld_library_path=$LD_LIBRARY_PATH
- endif
-
diff --git a/samples/java/adm/Linux/SamplesTopologyPackage.comp b/samples/java/adm/Linux/SamplesTopologyPackage.comp
deleted file mode 100755
index dede81bb2a..0000000000
--- a/samples/java/adm/Linux/SamplesTopologyPackage.comp
+++ /dev/null
@@ -1,17 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/usr/bin/g++ "
-if (!($?CCFLAGS)) setenv CCFLAGS " -fPIC -DLIN -DLININTEL -DCSFDB -DNO_EXCEPTION -funsigned-char -Wall -O3 -DNDEBUG -DNo_Exception "
-
-if (!($?CCINC)) setenv CCINC "."
-
-if (!($?STLPortHome)) then
- setenv STLPortInclude "."
-else
- if (!($?STLPortInclude)) setenv STLPortInclude "$STLPortHome/stlport"
-endif
-
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/SamplesTopologyPackage)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/SamplesTopologyPackage
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/.tmp)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/.tmp
-if (!(-e ${SAMPLE_ROOT}/${STATION}/lib)) mkdir -p ${SAMPLE_ROOT}/${STATION}/lib
-
-
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SamplesTopologyPackage/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/src/SamplesTopologyPackage/SamplesTopologyPackage.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SamplesTopologyPackage/SamplesTopologyPackage.o
diff --git a/samples/java/adm/Linux/TKNativePaint.lnk b/samples/java/adm/Linux/TKNativePaint.lnk
deleted file mode 100755
index 812b662937..0000000000
--- a/samples/java/adm/Linux/TKNativePaint.lnk
+++ /dev/null
@@ -1,42 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "g++ "
-if (!($?CCFLAGS)) setenv CCFLAGS " -shared "
-
-if (!($?STLPortHome)) then
- setenv STLPortLib "."
-else
- if (!($?STLPortLib_CC)) setenv STLPortLib_CC "stlport_gcc"
- if (!($?STLPortLib)) setenv STLPortLib "$STLPortHome/lib"
- setenv STLPortLib "$STLPortLib -l$STLPortLib_CC"
-endif
-
-${CCHOME} ${CCFLAGS} -o ${SAMPLE_ROOT}/${STATION}/lib//libTKNativePaint.so \
- -L${SAMPLE_ROOT}/${STATION}/lib \
- -L${CASROOT}/${STATION}/lib -L${STLPortLib} \
-${SAMPLE_ROOT}/${STATION}/obj/SampleNativePaint/CASCADEView3d.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleNativePaint/CASCADEView2d.o \
-\
--lTKernel \
--lTKMath \
--lTKGeomBase \
--lTKG2d \
--lTKG3d \
--lTKBRep \
--lTKGeomAlgo \
--lTKTopAlgo \
--lTKPrim \
--lTKHLR \
--lTKService \
--lTKV2d \
--lTKV3d \
--lTKjcas \
-\
- -L${JAVAHOME}/jre/lib/i386 -ljawt \
- -lc \
- ;
- set ld_status=$status
- if ( $ld_status ) then
- echo "Check failed"
- else
- echo "Check successed"
- endif
-
diff --git a/samples/java/adm/Linux/TKSamples.lnk b/samples/java/adm/Linux/TKSamples.lnk
deleted file mode 100755
index ca9126a48a..0000000000
--- a/samples/java/adm/Linux/TKSamples.lnk
+++ /dev/null
@@ -1,72 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "g++ "
-if (!($?CCFLAGS)) setenv CCFLAGS " -shared "
-
-if (!($?STLPortHome)) then
- setenv STLPortLib "."
-else
- if (!($?STLPortLib_CC)) setenv STLPortLib_CC "stlport_gcc"
- if (!($?STLPortLib)) setenv STLPortLib "$STLPortHome/lib"
- setenv STLPortLib "$STLPortLib -l$STLPortLib_CC"
-endif
-
-${CCHOME} ${CCFLAGS} -o ${SAMPLE_ROOT}/${STATION}/lib//libTKSamples.so \
- -L${SAMPLE_ROOT}/${STATION}/lib \
- -L${CASROOT}/${STATION}/lib -L${STLPortLib} \
-\
- ${SAMPLE_ROOT}/${STATION}/obj/SampleAISBasicPackage/SampleAISBasicPackage.o \
- ${SAMPLE_ROOT}/${STATION}/obj/SampleAISDisplayModePackage/SampleAISDisplayModePackage.o \
- ${SAMPLE_ROOT}/${STATION}/obj/SampleAISSelectPackage/SampleAISSelectPackage.o \
- ${SAMPLE_ROOT}/${STATION}/obj/SampleDisplayAnimationPackage/SampleDisplayAnimationPackage.o \
- ${SAMPLE_ROOT}/${STATION}/obj/SampleGeometryPackage/SampleGeometryPackage.o \
- ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRPackage/SampleHLRPackage.o \
- ${SAMPLE_ROOT}/${STATION}/obj/SampleImportExportPackage/SampleImportExportPackage.o \
- ${SAMPLE_ROOT}/${STATION}/obj/SamplesTopologyPackage/SamplesTopologyPackage.o \
- ${SAMPLE_ROOT}/${STATION}/obj/User/User_Cylinder.o \
- ${SAMPLE_ROOT}/${STATION}/obj/ISession/ISession_Point.o \
- ${SAMPLE_ROOT}/${STATION}/obj/ISession/ISession_Curve.o \
- ${SAMPLE_ROOT}/${STATION}/obj/ISession/ISession_Surface.o \
- ${SAMPLE_ROOT}/${STATION}/obj/ISession/ISession_Text.o \
- ${SAMPLE_ROOT}/${STATION}/obj/ISession/ISession_Direction.o \
- ${SAMPLE_ROOT}/${STATION}/obj/ISession2D/ISession2D_InteractiveContext.o \
- ${SAMPLE_ROOT}/${STATION}/obj/ISession2D/ISession2D_SensitiveCurve.o \
- ${SAMPLE_ROOT}/${STATION}/obj/ISession2D/ISession2D_Curve.o \
- ${SAMPLE_ROOT}/${STATION}/obj/ISession2D/ISession2D_ObjectOwner.o \
- ${SAMPLE_ROOT}/${STATION}/obj/ISession2D/ISession2D_Shape.o \
-\
- -lTKernel \
- -lTKBool \
- -lTKGeomAlgo \
- -lTKXSBase \
- -lTKIGES \
- -lTKFeat \
- -lTKMath \
- -lTKG3d \
- -lTKG2d \
- -lTKOffset \
- -lTKGeomBase \
- -lTKTopAlgo \
- -lTKV3d \
- -lTKService \
- -lPTKernel \
- -lTKShapeSchema \
- -lTKShHealing \
- -lTKBRep \
- -lTKFillet \
- -lTKHLR \
- -lTKV2d \
- -lTKPShape \
- -lTKMesh \
- -lTKSTEP \
- -lTKPrim \
- \
- \
- \
- \
- ;
- set ld_status=$status
- if ( $ld_status ) then
- echo "Check failed"
- else
- echo "Check successed"
- endif
-
diff --git a/samples/java/adm/Linux/TKSamples2.lnk b/samples/java/adm/Linux/TKSamples2.lnk
deleted file mode 100755
index 1249eb6b35..0000000000
--- a/samples/java/adm/Linux/TKSamples2.lnk
+++ /dev/null
@@ -1,35 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "g++ "
-if (!($?CCFLAGS)) setenv CCFLAGS " -shared "
-
-if (!($?STLPortHome)) then
- setenv STLPortLib "."
-else
- if (!($?STLPortLib_CC)) setenv STLPortLib_CC "stlport_gcc"
- if (!($?STLPortLib)) setenv STLPortLib "$STLPortHome/lib"
- setenv STLPortLib "$STLPortLib -l$STLPortLib_CC"
-endif
-
-${CCHOME} ${CCFLAGS} -o ${SAMPLE_ROOT}/${STATION}/lib//libTKSamples2.so \
- -L${SAMPLE_ROOT}/${STATION}/lib \
- -L${CASROOT}/${STATION}/lib -L${STLPortLib} \
-\
- ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DPackage/SampleViewer3DPackage.o \
-\
- -lTKMath \
- -lTKernel \
- -lTKService \
- -lTKV3d \
- -lTKG2d \
- -lTKV2d \
- -lTKBRep \
- -lTKGeomBase \
- -lTKTopAlgo \
- -lTKG3d \
- -lTKPrim \
- ;
- set ld_status=$status
- if ( $ld_status ) then
- echo "Check failed"
- else
- echo "Check successed"
- endif
diff --git a/samples/java/adm/Linux/TKjcas.lnk b/samples/java/adm/Linux/TKjcas.lnk
deleted file mode 100755
index 30b7445862..0000000000
--- a/samples/java/adm/Linux/TKjcas.lnk
+++ /dev/null
@@ -1,28 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "g++ "
-if (!($?CCFLAGS)) setenv CCFLAGS "-shared "
-
-if (!($?STLPortHome)) then
- setenv STLPortLib "."
-else
- if (!($?STLPortLib_CC)) setenv STLPortLib_CC "stlport_gcc"
- if (!($?STLPortLib)) setenv STLPortLib "$STLPortHome/lib"
- setenv STLPortLib "$STLPortLib -l$STLPortLib_CC"
-endif
-
-${CCHOME} ${CCFLAGS} -o ${SAMPLE_ROOT}/${STATION}/lib//libTKjcas.so \
- -L${SAMPLE_ROOT}/${STATION}/lib \
- -L${CASROOT}/${STATION}/lib -L${STLPortLib} \
-\
- ${SAMPLE_ROOT}/${STATION}/obj/jcas/jcas.o \
- ${SAMPLE_ROOT}/${STATION}/obj/jcas/jcas_Object.o \
- ${SAMPLE_ROOT}/${STATION}/obj/jcas/jcas_Transient.o \
-\
- -lTKernel \
- ;
- set ld_status=$status
- if ( $ld_status ) then
- echo "Check failed"
- else
- echo "Check successed"
- endif
-
diff --git a/samples/java/adm/Linux/User.comp b/samples/java/adm/Linux/User.comp
deleted file mode 100755
index 00da0772d2..0000000000
--- a/samples/java/adm/Linux/User.comp
+++ /dev/null
@@ -1,17 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/usr/bin/g++ "
-if (!($?CCFLAGS)) setenv CCFLAGS " -fPIC -DLIN -DLININTEL -DCSFDB -DNO_EXCEPTION -funsigned-char -Wall -O3 -DNDEBUG -DNo_Exception "
-
-if (!($?CCINC)) setenv CCINC "."
-
-if (!($?STLPortHome)) then
- setenv STLPortInclude "."
-else
- if (!($?STLPortInclude)) setenv STLPortInclude "$STLPortHome/stlport"
-endif
-
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/User)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/User
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/.tmp)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/.tmp
-if (!(-e ${SAMPLE_ROOT}/${STATION}/lib)) mkdir -p ${SAMPLE_ROOT}/${STATION}/lib
-
-
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/User/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/src/User/User_Cylinder.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/User/User_Cylinder.o
diff --git a/samples/java/adm/Linux/jcas.comp b/samples/java/adm/Linux/jcas.comp
deleted file mode 100755
index bed5a88753..0000000000
--- a/samples/java/adm/Linux/jcas.comp
+++ /dev/null
@@ -1,19 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/usr/bin/g++ "
-if (!($?CCFLAGS)) setenv CCFLAGS " -fPIC -DLIN -DLININTEL -DCSFDB -DNO_EXCEPTION -funsigned-char -Wall -O3 -DNDEBUG -DNo_Exception "
-
-if (!($?CCINC)) setenv CCINC "."
-
-if (!($?STLPortHome)) then
- setenv STLPortInclude "."
-else
- if (!($?STLPortInclude)) setenv STLPortInclude "$STLPortHome/stlport"
-endif
-
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/jcas)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/jcas
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/.tmp)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/.tmp
-if (!(-e ${SAMPLE_ROOT}/${STATION}/lib)) mkdir -p ${SAMPLE_ROOT}/${STATION}/lib
-
-
-${CCHOME} ${CCFLAGS} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -I${STLPortInclude} -I${CCINC} -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -I${CASROOT}/drv/jcas/. -c ${CASROOT}/src/jcas/jcas.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/jcas/jcas.o
-${CCHOME} ${CCFLAGS} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -I${STLPortInclude} -I${CCINC} -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -I${CASROOT}/drv/jcas/. -c ${CASROOT}/src/jcas/jcas_Object.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/jcas/jcas_Object.o
-${CCHOME} ${CCFLAGS} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -I${STLPortInclude} -I${CCINC} -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -I${CASROOT}/drv/jcas/. -c ${CASROOT}/src/jcas/jcas_Transient.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/jcas/jcas_Transient.o
diff --git a/samples/java/adm/SunOS/CASCADESamplesJni.comp b/samples/java/adm/SunOS/CASCADESamplesJni.comp
deleted file mode 100755
index eb9887bb63..0000000000
--- a/samples/java/adm/SunOS/CASCADESamplesJni.comp
+++ /dev/null
@@ -1,102 +0,0 @@
-if (!($?CCHOME)) set CCHOME = "/opt/DEV5_1/SUNWspro/bin/CC "
-if (!($?CCFLAGS)) set CCFLAGS = " -PIC -xchip=ultra -xarch=v8 -Usun -DSOLARIS -DNO_CXX_EXCEPTION -vdelx -DCSFDB -O2 -DNo_Exception +w "
-
-if (!($?CCINC)) setenv CCINC "/opt/DEV5_1/SUNWspro/SC4.2/include/CC"
-
-if (!($?STLPortHome)) then
- setenv STLPortInclude "."
-else
- if (!($?STLPortInclude)) setenv STLPortInclude "$STLPortHome/stlport"
-endif
-
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni
-if (!(-e ${SAMPLE_ROOT}/${STATION}/lib)) mkdir -p ${SAMPLE_ROOT}/${STATION}/lib
-
-
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_AIS_Drawer_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_AIS_Drawer_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_AIS_InteractiveContext_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_AIS_InteractiveContext_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_AIS_InteractiveObject_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_AIS_InteractiveObject_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_AIS_ListOfInteractive_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_AIS_ListOfInteractive_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_AIS_Shape_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_AIS_Shape_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_AspectMarker_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Aspect_AspectMarker_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_Background_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Aspect_Background_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_ColorMap_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Aspect_ColorMap_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_ColorScale_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Aspect_ColorScale_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_Driver_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Aspect_Driver_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_FontMap_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Aspect_FontMap_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_GraphicDevice_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Aspect_GraphicDevice_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_Grid_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Aspect_Grid_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_MarkMap_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Aspect_MarkMap_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_PixMap_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Aspect_PixMap_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_TypeMap_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Aspect_TypeMap_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_WidthMap_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Aspect_WidthMap_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_WindowDriver_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Aspect_WindowDriver_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_Window_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Aspect_Window_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Bnd_Box_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Bnd_Box_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Geom_Transformation_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Geom_Transformation_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_gp_Ax3_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_gp_Ax3_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_gp_Pnt_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_gp_Pnt_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Graphic2d_DisplayList_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Graphic2d_DisplayList_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Graphic2d_GraphicObject_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Graphic2d_GraphicObject_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Graphic2d_View_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Graphic2d_View_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_AspectMarker3d_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_AspectMarker3d_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_DataStructureManager_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_DataStructureManager_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_MaterialAspect_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_MaterialAspect_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_Plotter_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_Plotter_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_Structure_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_Structure_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_StructureManager_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_StructureManager_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_TextureEnv_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_TextureEnv_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_TextureRoot_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_TextureRoot_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_Vector_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_Vector_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_Vertex_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_Vertex_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_ISession2D_InteractiveContext_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_ISession2D_InteractiveContext_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_PlotMgt_PlotterDriver_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_PlotMgt_PlotterDriver_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Prs3d_BasicAspect_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Prs3d_BasicAspect_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Prs3d_Drawer_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Prs3d_Drawer_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Prs3d_LineAspect_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Prs3d_LineAspect_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Prs3d_Presentation_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Prs3d_Presentation_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Prs3d_Projector_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Prs3d_Projector_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_PrsMgr_PresentableObject_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_PrsMgr_PresentableObject_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_PrsMgr_Presentation_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_PrsMgr_Presentation_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_PrsMgr_PresentationManager2d_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_PrsMgr_PresentationManager2d_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_PrsMgr_PresentationManager3d_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_PrsMgr_PresentationManager3d_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_PrsMgr_PresentationManager_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_PrsMgr_PresentationManager_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_PrsMgr_Presentations_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_PrsMgr_Presentations_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Quantity_Color_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Quantity_Color_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Select2D_Projector_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Select2D_Projector_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_SelectBasics_EntityOwner_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_SelectBasics_EntityOwner_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_SelectMgr_EntityOwner_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_SelectMgr_EntityOwner_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_SelectMgr_Filter_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_SelectMgr_Filter_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_SelectMgr_ListOfFilter_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_SelectMgr_ListOfFilter_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_SelectMgr_SelectableObject_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_SelectMgr_SelectableObject_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_SelectMgr_Selection_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_SelectMgr_Selection_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_SelectMgr_SelectionManager_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_SelectMgr_SelectionManager_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_SelectMgr_SequenceOfOwner_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_SelectMgr_SequenceOfOwner_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_SelectMgr_ViewerSelector_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_SelectMgr_ViewerSelector_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Standard_Type_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Standard_Type_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_StdSelect_ViewerSelector3d_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_StdSelect_ViewerSelector3d_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_TColgp_Array1OfPnt2d_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_TColgp_Array1OfPnt2d_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_TCollection_AsciiString_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_TCollection_AsciiString_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_TCollection_BaseSequence_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_TCollection_BaseSequence_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_TCollection_BasicMap_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_TCollection_BasicMap_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_TCollection_ExtendedString_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_TCollection_ExtendedString_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_TColStd_Array2OfReal_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_TColStd_Array2OfReal_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_TColStd_ListOfInteger_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_TColStd_ListOfInteger_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_TColStd_ListOfTransient_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_TColStd_ListOfTransient_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_TColStd_MapOfTransient_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_TColStd_MapOfTransient_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_TopLoc_Location_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_TopLoc_Location_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_TopoDS_Shape_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_TopoDS_Shape_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_TopoDS_TShape_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_TopoDS_TShape_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_V2d_Viewer_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_V2d_Viewer_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_V2d_View_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_V2d_View_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_V3d_Light_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_V3d_Light_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_V3d_OrthographicView_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_V3d_OrthographicView_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_V3d_PerspectiveView_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_V3d_PerspectiveView_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_V3d_Plane_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_V3d_Plane_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_V3d_Viewer_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_V3d_Viewer_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_V3d_View_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_V3d_View_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Viewer_Viewer_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Viewer_Viewer_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Viewer_View_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Viewer_View_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Visual3d_View_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Visual3d_View_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/CASCADESamplesJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/CASCADESamplesJni/CASCADESamplesJni_Visual3d_ViewManager_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Visual3d_ViewManager_java.o
diff --git a/samples/java/adm/SunOS/CASCADESamplesJni.lnk b/samples/java/adm/SunOS/CASCADESamplesJni.lnk
deleted file mode 100755
index 5293f697b5..0000000000
--- a/samples/java/adm/SunOS/CASCADESamplesJni.lnk
+++ /dev/null
@@ -1,142 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/opt/DEV5_1/SUNWspro/bin/CC "
-if (!($?CCFLAGS)) setenv CCFLAGS " -xchip=ultra -xarch=v8 -G -mt "
-
-if (!($?STLPortHome)) then
- setenv STLPortLib "."
-else
- if (!($?STLPortLib_CC)) setenv STLPortLib_CC "stlport_gcc"
- if (!($?STLPortLib)) setenv STLPortLib "$STLPortHome/lib"
- setenv STLPortLib "$STLPortLib -l$STLPortLib_CC"
-endif
-
-${CCHOME} ${CCFLAGS} -o ${SAMPLE_ROOT}/${STATION}/lib//libCASCADESamplesJni.so \
- -L${SAMPLE_ROOT}/${STATION}/lib \
- -L${CASROOT}/${STATION}/lib -L${STLPortLib} \
-\
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_AIS_Drawer_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_AIS_InteractiveContext_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_AIS_InteractiveObject_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_AIS_ListOfInteractive_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_AIS_Shape_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Aspect_AspectMarker_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Aspect_Background_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Aspect_ColorMap_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Aspect_ColorScale_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Aspect_Driver_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Aspect_FontMap_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Aspect_GraphicDevice_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Aspect_Grid_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Aspect_MarkMap_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Aspect_PixMap_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Aspect_TypeMap_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Aspect_WidthMap_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Aspect_WindowDriver_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Aspect_Window_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Bnd_Box_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Geom_Transformation_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_gp_Ax3_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_gp_Pnt_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Graphic2d_DisplayList_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Graphic2d_GraphicObject_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Graphic2d_View_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_AspectMarker3d_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_DataStructureManager_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_MaterialAspect_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_Plotter_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_Structure_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_StructureManager_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_TextureEnv_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_TextureRoot_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_Vector_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Graphic3d_Vertex_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_ISession2D_InteractiveContext_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_PlotMgt_PlotterDriver_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Prs3d_BasicAspect_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Prs3d_Drawer_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Prs3d_LineAspect_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Prs3d_Presentation_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Prs3d_Projector_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_PrsMgr_PresentableObject_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_PrsMgr_Presentation_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_PrsMgr_PresentationManager2d_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_PrsMgr_PresentationManager3d_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_PrsMgr_PresentationManager_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_PrsMgr_Presentations_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Quantity_Color_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Select2D_Projector_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_SelectBasics_EntityOwner_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_SelectMgr_EntityOwner_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_SelectMgr_Filter_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_SelectMgr_ListOfFilter_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_SelectMgr_SelectableObject_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_SelectMgr_Selection_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_SelectMgr_SelectionManager_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_SelectMgr_SequenceOfOwner_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_SelectMgr_ViewerSelector_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Standard_Type_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_StdSelect_ViewerSelector3d_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_TColgp_Array1OfPnt2d_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_TCollection_AsciiString_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_TCollection_BaseSequence_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_TCollection_BasicMap_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_TCollection_ExtendedString_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_TColStd_Array2OfReal_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_TColStd_ListOfInteger_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_TColStd_ListOfTransient_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_TColStd_MapOfTransient_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_TopLoc_Location_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_TopoDS_Shape_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_TopoDS_TShape_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_V2d_Viewer_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_V2d_View_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_V3d_Light_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_V3d_OrthographicView_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_V3d_PerspectiveView_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_V3d_Plane_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_V3d_Viewer_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_V3d_View_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Viewer_Viewer_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Viewer_View_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Visual3d_View_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/CASCADESamplesJni/CASCADESamplesJni_Visual3d_ViewManager_java.o \
-\
- -lTKjcas \
- -lTKPrim \
- -lTKFillet \
- -lPTKernel \
- -lTKPShape \
- -lTKOffset \
- -lTKShHealing \
- -lTKXSBase \
- -lTKIGES \
- -lTKShapeSchema \
- -lTKSTEP \
- -lTKFeat \
- -lTKSamples \
- -lTKV3d \
- -lTKernel \
- -lTKGeomAlgo \
- -lTKGeomBase \
- -lTKBool \
- -lTKTopAlgo \
- -lTKBRep \
- -lTKV2d \
- -lTKService \
- -lTKHLR \
- -lTKG2d \
- -lTKMath \
- -lTKG3d \
- -lsocket -lnsl -lsunmath -lm -ldl \
- \
- \
- \
- \
- -L/usr/openwin/lib -lX11 -lXext -lXmu \
- \
- -L/usr/openwin/lib -ldps \
- -lC -lc ;
- set ld_status=$status
- if ( $?LD_LIBRARY_PATH ) then
- set ld_library_path=$LD_LIBRARY_PATH
- endif
-
diff --git a/samples/java/adm/SunOS/ISession.comp b/samples/java/adm/SunOS/ISession.comp
deleted file mode 100755
index 0bcf3213d0..0000000000
--- a/samples/java/adm/SunOS/ISession.comp
+++ /dev/null
@@ -1,20 +0,0 @@
-if (!($?CCHOME)) set CCHOME = "/opt/DEV5_1/SUNWspro/bin/CC "
-if (!($?CCFLAGS)) set CCFLAGS = " -PIC -xchip=ultra -xarch=v8 -Usun -DSOLARIS -DNO_CXX_EXCEPTION -vdelx -DCSFDB -O2 -DNo_Exception +w "
-
-if (!($?CCINC)) set CCINC = "/opt/DEV5_1/SUNWspro/SC4.2/include/CC"
-
-if (!($?STLPortHome)) then
- setenv STLPortInclude "."
-else
- if (!($?STLPortInclude)) setenv STLPortInclude "$STLPortHome/stlport"
-endif
-
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/ISession)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/ISession
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/.tmp)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/.tmp
-if (!(-e ${SAMPLE_ROOT}/${STATION}/lib)) mkdir -p ${SAMPLE_ROOT}/${STATION}/lib
-
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/ISession/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/src/ISession/ISession_Point.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/ISession//ISession_Point.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/ISession/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/src/ISession/ISession_Curve.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/ISession//ISession_Curve.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/ISession/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/src/ISession/ISession_Surface.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/ISession//ISession_Surface.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/ISession/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/src/ISession/ISession_Text.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/ISession//ISession_Text.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/ISession/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/src/ISession/ISession_Direction.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/ISession//ISession_Direction.o
diff --git a/samples/java/adm/SunOS/ISession2D.comp b/samples/java/adm/SunOS/ISession2D.comp
deleted file mode 100755
index 943bd7ab75..0000000000
--- a/samples/java/adm/SunOS/ISession2D.comp
+++ /dev/null
@@ -1,21 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/opt/DEV5_1/SUNWspro/bin/CC "
-if (!($?CCFLAGS)) setenv CCFLAGS " -PIC -xchip=ultra -xarch=v8 -Usun -DSOLARIS -DNO_CXX_EXCEPTION -vdelx -DCSFDB -O2 -DNo_Exception +w "
-
-if (!($?CCINC)) setenv CCINC "/opt/DEV5_1/SUNWspro/SC4.2/include/CC"
-
-if (!($?STLPortHome)) then
- setenv STLPortInclude "."
-else
- if (!($?STLPortInclude)) setenv STLPortInclude "$STLPortHome/stlport"
-endif
-
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/ISession2D)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/ISession2D
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/.tmp)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/.tmp
-if (!(-e ${SAMPLE_ROOT}/${STATION}/lib)) mkdir -p ${SAMPLE_ROOT}/${STATION}/lib
-
-
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/ISession2D/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/src/ISession2D/ISession2D_InteractiveContext.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/ISession2D//ISession2D_InteractiveContext.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/ISession2D/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/src/ISession2D/ISession2D_SensitiveCurve.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/ISession2D//ISession2D_SensitiveCurve.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/ISession2D/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/src/ISession2D/ISession2D_Curve.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/ISession2D//ISession2D_Curve.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/ISession2D/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/src/ISession2D/ISession2D_ObjectOwner.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/ISession2D//ISession2D_ObjectOwner.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/ISession2D/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/src/ISession2D/ISession2D_Shape.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/ISession2D//ISession2D_Shape.o
diff --git a/samples/java/adm/SunOS/SampleAISBasicJni.comp b/samples/java/adm/SunOS/SampleAISBasicJni.comp
deleted file mode 100755
index 4f9cc10325..0000000000
--- a/samples/java/adm/SunOS/SampleAISBasicJni.comp
+++ /dev/null
@@ -1,24 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/opt/DEV5_1/SUNWspro/bin/CC "
-if (!($?CCFLAGS)) setenv CCFLAGS " -PIC -xchip=ultra -xarch=v8 -Usun -DSOLARIS -DNO_CXX_EXCEPTION -vdelx -DCSFDB -O2 -DNo_Exception +w "
-
-if (!($?CCINC)) setenv CCINC "/opt/DEV5_1/SUNWspro/SC4.2/include/CC"
-
-if (!($?STLPortHome)) then
- setenv STLPortInclude "."
-else
- if (!($?STLPortInclude)) setenv STLPortInclude "$STLPortHome/stlport"
-endif
-
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/SampleAISBasicJni)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/SampleAISBasicJni
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/.tmp)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/.tmp
-if (!(-e ${SAMPLE_ROOT}/${STATION}/lib)) mkdir -p ${SAMPLE_ROOT}/${STATION}/lib
-
-
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleAISBasicJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleAISBasicJni/SampleAISBasicJni_AIS_InteractiveContext_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleAISBasicJni/SampleAISBasicJni_AIS_InteractiveContext_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleAISBasicJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleAISBasicJni/SampleAISBasicJni_SampleAISBasicPackage_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleAISBasicJni/SampleAISBasicJni_SampleAISBasicPackage_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleAISBasicJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleAISBasicJni/SampleAISBasicJni_TCollection_AsciiString_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleAISBasicJni/SampleAISBasicJni_TCollection_AsciiString_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleAISBasicJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleAISBasicJni/SampleAISBasicJni_UnitsAPI_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleAISBasicJni/SampleAISBasicJni_UnitsAPI_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleAISBasicJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleAISBasicJni/SampleAISBasicJni_V3d_Viewer_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleAISBasicJni/SampleAISBasicJni_V3d_Viewer_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleAISBasicJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleAISBasicJni/SampleAISBasicJni_V3d_View_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleAISBasicJni/SampleAISBasicJni_V3d_View_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleAISBasicJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleAISBasicJni/SampleAISBasicJni_Viewer_Viewer_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleAISBasicJni/SampleAISBasicJni_Viewer_Viewer_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleAISBasicJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleAISBasicJni/SampleAISBasicJni_Viewer_View_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleAISBasicJni/SampleAISBasicJni_Viewer_View_java.o
diff --git a/samples/java/adm/SunOS/SampleAISBasicJni.lnk b/samples/java/adm/SunOS/SampleAISBasicJni.lnk
deleted file mode 100755
index fb32b1dc39..0000000000
--- a/samples/java/adm/SunOS/SampleAISBasicJni.lnk
+++ /dev/null
@@ -1,66 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/opt/DEV5_1/SUNWspro/bin/CC "
-if (!($?CCFLAGS)) setenv CCFLAGS " -xchip=ultra -xarch=v8 -G -mt "
-
-if (!($?STLPortHome)) then
- setenv STLPortLib "."
-else
- if (!($?STLPortLib_CC)) setenv STLPortLib_CC "stlport_gcc"
- if (!($?STLPortLib)) setenv STLPortLib "$STLPortHome/lib"
- setenv STLPortLib "$STLPortLib -l$STLPortLib_CC"
-endif
-
-${CCHOME} ${CCFLAGS} -o ${SAMPLE_ROOT}/${STATION}/lib//libSampleAISBasicJni.so \
- -L${SAMPLE_ROOT}/${STATION}/lib \
- -L${CASROOT}/${STATION}/lib -L${STLPortLib} \
-\
-${SAMPLE_ROOT}/${STATION}/obj/SampleAISBasicJni/SampleAISBasicJni_AIS_InteractiveContext_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleAISBasicJni/SampleAISBasicJni_SampleAISBasicPackage_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleAISBasicJni/SampleAISBasicJni_TCollection_AsciiString_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleAISBasicJni/SampleAISBasicJni_UnitsAPI_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleAISBasicJni/SampleAISBasicJni_V3d_Viewer_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleAISBasicJni/SampleAISBasicJni_V3d_View_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleAISBasicJni/SampleAISBasicJni_Viewer_Viewer_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleAISBasicJni/SampleAISBasicJni_Viewer_View_java.o \
-\
- -lTKFillet \
- -lPTKernel \
- -lTKPShape \
- -lTKOffset \
- -lTKShHealing \
- -lTKXSBase \
- -lTKIGES \
- -lTKCDF \
- -lTKPCAF \
- -lTKShapeSchema \
- -lTKSTEP \
- -lTKFeat \
- -lTKSamples \
- -lTKPrim \
- -lTKjcas \
- -lTKV3d \
- -lTKernel \
- -lTKGeomAlgo \
- -lTKGeomBase \
- -lTKBool \
- -lTKTopAlgo \
- -lTKBRep \
- -lTKHLR \
- -lTKG2d \
- -lTKV2d \
- -lTKService \
- -lTKMath \
- -lTKG3d \
- -lsocket -lnsl -lsunmath -lm -ldl \
- \
- \
- \
- \
- -L/usr/openwin/lib -lX11 -lXext -lXmu \
- \
- -L/usr/openwin/lib -ldps \
- -lC -lc ;
- set ld_status=$status
- if ( $?LD_LIBRARY_PATH ) then
- set ld_library_path=$LD_LIBRARY_PATH
- endif
-
diff --git a/samples/java/adm/SunOS/SampleAISBasicPackage.comp b/samples/java/adm/SunOS/SampleAISBasicPackage.comp
deleted file mode 100755
index 6b8933bd32..0000000000
--- a/samples/java/adm/SunOS/SampleAISBasicPackage.comp
+++ /dev/null
@@ -1,17 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/opt/DEV5_1/SUNWspro/bin/CC "
-if (!($?CCFLAGS)) setenv CCFLAGS " -PIC -xchip=ultra -xarch=v8 -Usun -DSOLARIS -DNO_CXX_EXCEPTION -vdelx -DCSFDB -O2 -DNo_Exception +w "
-
-if (!($?CCINC)) setenv CCINC "/opt/DEV5_1/SUNWspro/SC4.2/include/CC"
-
-if (!($?STLPortHome)) then
- setenv STLPortInclude "."
-else
- if (!($?STLPortInclude)) setenv STLPortInclude "$STLPortHome/stlport"
-endif
-
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/SampleAISBasicPackage)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/SampleAISBasicPackage
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/.tmp)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/.tmp
-if (!(-e ${SAMPLE_ROOT}/${STATION}/lib)) mkdir -p ${SAMPLE_ROOT}/${STATION}/lib
-
-
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleAISBasicPackage/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/src/SampleAISBasicPackage/SampleAISBasicPackage.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleAISBasicPackage//SampleAISBasicPackage.o
diff --git a/samples/java/adm/SunOS/SampleAISDisplayModeJni.comp b/samples/java/adm/SunOS/SampleAISDisplayModeJni.comp
deleted file mode 100755
index ef88309825..0000000000
--- a/samples/java/adm/SunOS/SampleAISDisplayModeJni.comp
+++ /dev/null
@@ -1,24 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/opt/DEV5_1/SUNWspro/bin/CC "
-if (!($?CCFLAGS)) setenv CCFLAGS " -PIC -xchip=ultra -xarch=v8 -Usun -DSOLARIS -DNO_CXX_EXCEPTION -vdelx -DCSFDB -O2 -DNo_Exception +w "
-
-if (!($?CCINC)) setenv CCINC "/opt/DEV5_1/SUNWspro/SC4.2/include/CC"
-
-if (!($?STLPortHome)) then
- setenv STLPortInclude "."
-else
- if (!($?STLPortInclude)) setenv STLPortInclude "$STLPortHome/stlport"
-endif
-
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/SampleAISDisplayModeJni)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/SampleAISDisplayModeJni
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/.tmp)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/.tmp
-if (!(-e ${SAMPLE_ROOT}/${STATION}/lib)) mkdir -p ${SAMPLE_ROOT}/${STATION}/lib
-
-
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleAISDisplayModeJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleAISDisplayModeJni/SampleAISDisplayModeJni_AIS_InteractiveContext_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleAISDisplayModeJni/SampleAISDisplayModeJni_AIS_InteractiveContext_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleAISDisplayModeJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleAISDisplayModeJni/SampleAISDisplayModeJni_Quantity_Color_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleAISDisplayModeJni/SampleAISDisplayModeJni_Quantity_Color_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleAISDisplayModeJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleAISDisplayModeJni/SampleAISDisplayModeJni_SampleAISDisplayModePackage_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleAISDisplayModeJni/SampleAISDisplayModeJni_SampleAISDisplayModePackage_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleAISDisplayModeJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleAISDisplayModeJni/SampleAISDisplayModeJni_TCollection_AsciiString_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleAISDisplayModeJni/SampleAISDisplayModeJni_TCollection_AsciiString_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleAISDisplayModeJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleAISDisplayModeJni/SampleAISDisplayModeJni_V3d_Viewer_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleAISDisplayModeJni/SampleAISDisplayModeJni_V3d_Viewer_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleAISDisplayModeJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleAISDisplayModeJni/SampleAISDisplayModeJni_V3d_View_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleAISDisplayModeJni/SampleAISDisplayModeJni_V3d_View_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleAISDisplayModeJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleAISDisplayModeJni/SampleAISDisplayModeJni_Viewer_Viewer_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleAISDisplayModeJni/SampleAISDisplayModeJni_Viewer_Viewer_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleAISDisplayModeJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleAISDisplayModeJni/SampleAISDisplayModeJni_Viewer_View_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleAISDisplayModeJni/SampleAISDisplayModeJni_Viewer_View_java.o
diff --git a/samples/java/adm/SunOS/SampleAISDisplayModeJni.lnk b/samples/java/adm/SunOS/SampleAISDisplayModeJni.lnk
deleted file mode 100755
index 7528c2efc9..0000000000
--- a/samples/java/adm/SunOS/SampleAISDisplayModeJni.lnk
+++ /dev/null
@@ -1,64 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/opt/DEV5_1/SUNWspro/bin/CC "
-if (!($?CCFLAGS)) setenv CCFLAGS " -xchip=ultra -xarch=v8 -G -mt "
-
-if (!($?STLPortHome)) then
- setenv STLPortLib "."
-else
- if (!($?STLPortLib_CC)) setenv STLPortLib_CC "stlport_gcc"
- if (!($?STLPortLib)) setenv STLPortLib "$STLPortHome/lib"
- setenv STLPortLib "$STLPortLib -l$STLPortLib_CC"
-endif
-
-${CCHOME} ${CCFLAGS} -o ${SAMPLE_ROOT}/${STATION}/lib//libSampleAISDisplayModeJni.so \
- -L${SAMPLE_ROOT}/${STATION}/lib \
- -L${CASROOT}/${STATION}/lib -L${STLPortLib} \
-\
-${SAMPLE_ROOT}/${STATION}/obj/SampleAISDisplayModeJni/SampleAISDisplayModeJni_AIS_InteractiveContext_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleAISDisplayModeJni/SampleAISDisplayModeJni_Quantity_Color_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleAISDisplayModeJni/SampleAISDisplayModeJni_SampleAISDisplayModePackage_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleAISDisplayModeJni/SampleAISDisplayModeJni_TCollection_AsciiString_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleAISDisplayModeJni/SampleAISDisplayModeJni_V3d_Viewer_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleAISDisplayModeJni/SampleAISDisplayModeJni_V3d_View_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleAISDisplayModeJni/SampleAISDisplayModeJni_Viewer_Viewer_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleAISDisplayModeJni/SampleAISDisplayModeJni_Viewer_View_java.o \
-\
- -lTKjcas \
- -lTKFillet \
- -lPTKernel \
- -lTKPShape \
- -lTKOffset \
- -lTKShHealing \
- -lTKXSBase \
- -lTKIGES \
- -lTKShapeSchema \
- -lTKSTEP \
- -lTKFeat \
- -lTKSamples \
- -lTKV3d \
- -lTKernel \
- -lTKGeomAlgo \
- -lTKGeomBase \
- -lTKPrim \
- -lTKBool \
- -lTKTopAlgo \
- -lTKBRep \
- -lTKHLR \
- -lTKG2d \
- -lTKV2d \
- -lTKService \
- -lTKMath \
- -lTKG3d \
- -lsocket -lnsl -lsunmath -lm -ldl \
- \
- \
- \
- \
- -L/usr/openwin/lib -lX11 -lXext -lXmu \
- \
- -L/usr/openwin/lib -ldps \
- -lC -lc ;
- set ld_status=$status
- if ( $?LD_LIBRARY_PATH ) then
- set ld_library_path=$LD_LIBRARY_PATH
- endif
-
diff --git a/samples/java/adm/SunOS/SampleAISDisplayModePackage.comp b/samples/java/adm/SunOS/SampleAISDisplayModePackage.comp
deleted file mode 100755
index 37938dd570..0000000000
--- a/samples/java/adm/SunOS/SampleAISDisplayModePackage.comp
+++ /dev/null
@@ -1,17 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/opt/DEV5_1/SUNWspro/bin/CC "
-if (!($?CCFLAGS)) setenv CCFLAGS " -PIC -xchip=ultra -xarch=v8 -Usun -DSOLARIS -DNO_CXX_EXCEPTION -vdelx -DCSFDB -O2 -DNo_Exception +w "
-
-if (!($?CCINC)) setenv CCINC "/opt/DEV5_1/SUNWspro/SC4.2/include/CC"
-
-if (!($?STLPortHome)) then
- setenv STLPortInclude "."
-else
- if (!($?STLPortInclude)) setenv STLPortInclude "$STLPortHome/stlport"
-endif
-
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/SampleAISDisplayModePackage)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/SampleAISDisplayModePackage
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/.tmp)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/.tmp
-if (!(-e ${SAMPLE_ROOT}/${STATION}/lib)) mkdir -p ${SAMPLE_ROOT}/${STATION}/lib
-
-
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleAISDisplayModePackage/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/src/SampleAISDisplayModePackage/SampleAISDisplayModePackage.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleAISDisplayModePackage/SampleAISDisplayModePackage.o
diff --git a/samples/java/adm/SunOS/SampleAISSelectJni.comp b/samples/java/adm/SunOS/SampleAISSelectJni.comp
deleted file mode 100755
index 5ddba4e426..0000000000
--- a/samples/java/adm/SunOS/SampleAISSelectJni.comp
+++ /dev/null
@@ -1,24 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/opt/DEV5_1/SUNWspro/bin/CC "
-if (!($?CCFLAGS)) setenv CCFLAGS " -PIC -xchip=ultra -xarch=v8 -Usun -DSOLARIS -DNO_CXX_EXCEPTION -vdelx -DCSFDB -O2 -DNo_Exception +w "
-
-if (!($?CCINC)) setenv CCINC "/opt/DEV5_1/SUNWspro/SC4.2/include/CC"
-
-if (!($?STLPortHome)) then
- setenv STLPortInclude "."
-else
- if (!($?STLPortInclude)) setenv STLPortInclude "$STLPortHome/stlport"
-endif
-
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/SampleAISSelectJni)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/SampleAISSelectJni
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/.tmp)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/.tmp
-if (!(-e ${SAMPLE_ROOT}/${STATION}/lib)) mkdir -p ${SAMPLE_ROOT}/${STATION}/lib
-
-
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleAISSelectJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleAISSelectJni/SampleAISSelectJni_AIS_InteractiveContext_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleAISSelectJni/SampleAISSelectJni_AIS_InteractiveContext_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleAISSelectJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleAISSelectJni/SampleAISSelectJni_Quantity_Color_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleAISSelectJni/SampleAISSelectJni_Quantity_Color_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleAISSelectJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleAISSelectJni/SampleAISSelectJni_SampleAISSelectPackage_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleAISSelectJni/SampleAISSelectJni_SampleAISSelectPackage_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleAISSelectJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleAISSelectJni/SampleAISSelectJni_TCollection_AsciiString_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleAISSelectJni/SampleAISSelectJni_TCollection_AsciiString_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleAISSelectJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleAISSelectJni/SampleAISSelectJni_V3d_Viewer_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleAISSelectJni/SampleAISSelectJni_V3d_Viewer_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleAISSelectJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleAISSelectJni/SampleAISSelectJni_V3d_View_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleAISSelectJni/SampleAISSelectJni_V3d_View_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleAISSelectJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleAISSelectJni/SampleAISSelectJni_Viewer_Viewer_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleAISSelectJni/SampleAISSelectJni_Viewer_Viewer_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleAISSelectJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleAISSelectJni/SampleAISSelectJni_Viewer_View_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleAISSelectJni/SampleAISSelectJni_Viewer_View_java.o
diff --git a/samples/java/adm/SunOS/SampleAISSelectJni.lnk b/samples/java/adm/SunOS/SampleAISSelectJni.lnk
deleted file mode 100755
index 989d86d390..0000000000
--- a/samples/java/adm/SunOS/SampleAISSelectJni.lnk
+++ /dev/null
@@ -1,66 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/opt/DEV5_1/SUNWspro/bin/CC "
-if (!($?CCFLAGS)) setenv CCFLAGS " -xchip=ultra -xarch=v8 -G -mt "
-
-if (!($?STLPortHome)) then
- setenv STLPortLib "."
-else
- if (!($?STLPortLib_CC)) setenv STLPortLib_CC "stlport_gcc"
- if (!($?STLPortLib)) setenv STLPortLib "$STLPortHome/lib"
- setenv STLPortLib "$STLPortLib -l$STLPortLib_CC"
-endif
-
-${CCHOME} ${CCFLAGS} -o ${SAMPLE_ROOT}/${STATION}/lib//libSampleAISSelectJni.so \
- -L${SAMPLE_ROOT}/${STATION}/lib \
- -L${CASROOT}/${STATION}/lib -L${STLPortLib} \
-\
-${SAMPLE_ROOT}/${STATION}/obj/SampleAISSelectJni/SampleAISSelectJni_AIS_InteractiveContext_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleAISSelectJni/SampleAISSelectJni_Quantity_Color_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleAISSelectJni/SampleAISSelectJni_SampleAISSelectPackage_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleAISSelectJni/SampleAISSelectJni_TCollection_AsciiString_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleAISSelectJni/SampleAISSelectJni_V3d_Viewer_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleAISSelectJni/SampleAISSelectJni_V3d_View_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleAISSelectJni/SampleAISSelectJni_Viewer_Viewer_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleAISSelectJni/SampleAISSelectJni_Viewer_View_java.o \
-\
- -lPTKernel \
- -lTKPShape \
- -lTKOffset \
- -lTKShHealing \
- -lTKXSBase \
- -lTKIGES \
- -lTKCDF \
- -lTKPCAF \
- -lTKShapeSchema \
- -lTKSTEP \
- -lTKFeat \
- -lTKSamples \
- -lTKFillet \
- -lTKGeomAlgo \
- -lTKPrim \
- -lTKBool \
- -lTKjcas \
- -lTKV3d \
- -lTKernel \
- -lTKGeomBase \
- -lTKTopAlgo \
- -lTKBRep \
- -lTKHLR \
- -lTKG2d \
- -lTKV2d \
- -lTKService \
- -lTKMath \
- -lTKG3d \
- -lsocket -lnsl -lsunmath -lm -ldl \
- \
- \
- \
- \
- -L/usr/openwin/lib -lX11 -lXext -lXmu \
- \
- -L/usr/openwin/lib -ldps \
- -lC -lc ;
- set ld_status=$status
- if ( $?LD_LIBRARY_PATH ) then
- set ld_library_path=$LD_LIBRARY_PATH
- endif
-
diff --git a/samples/java/adm/SunOS/SampleAISSelectPackage.comp b/samples/java/adm/SunOS/SampleAISSelectPackage.comp
deleted file mode 100755
index ecca86fcb4..0000000000
--- a/samples/java/adm/SunOS/SampleAISSelectPackage.comp
+++ /dev/null
@@ -1,17 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/opt/DEV5_1/SUNWspro/bin/CC "
-if (!($?CCFLAGS)) setenv CCFLAGS " -PIC -xchip=ultra -xarch=v8 -Usun -DSOLARIS -DNO_CXX_EXCEPTION -vdelx -DCSFDB -O2 -DNo_Exception +w "
-
-if (!($?CCINC)) setenv CCINC "/opt/DEV5_1/SUNWspro/SC4.2/include/CC"
-
-if (!($?STLPortHome)) then
- setenv STLPortInclude "."
-else
- if (!($?STLPortInclude)) setenv STLPortInclude "$STLPortHome/stlport"
-endif
-
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/SampleAISSelectPackage)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/SampleAISSelectPackage
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/.tmp)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/.tmp
-if (!(-e ${SAMPLE_ROOT}/${STATION}/lib)) mkdir -p ${SAMPLE_ROOT}/${STATION}/lib
-
-
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleAISSelectPackage/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/src/SampleAISSelectPackage/SampleAISSelectPackage.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleAISSelectPackage/SampleAISSelectPackage.o
diff --git a/samples/java/adm/SunOS/SampleDisplayAnimationJni.comp b/samples/java/adm/SunOS/SampleDisplayAnimationJni.comp
deleted file mode 100755
index 0180f625cb..0000000000
--- a/samples/java/adm/SunOS/SampleDisplayAnimationJni.comp
+++ /dev/null
@@ -1,22 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/opt/DEV5_1/SUNWspro/bin/CC "
-if (!($?CCFLAGS)) setenv CCFLAGS " -PIC -xchip=ultra -xarch=v8 -Usun -DSOLARIS -DNO_CXX_EXCEPTION -vdelx -DCSFDB -O2 -DNo_Exception +w "
-
-if (!($?CCINC)) setenv CCINC "/opt/DEV5_1/SUNWspro/SC4.2/include/CC"
-
-if (!($?STLPortHome)) then
- setenv STLPortInclude "."
-else
- if (!($?STLPortInclude)) setenv STLPortInclude "$STLPortHome/stlport"
-endif
-
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/SampleDisplayAnimationJni)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/SampleDisplayAnimationJni
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/.tmp)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/.tmp
-if (!(-e ${SAMPLE_ROOT}/${STATION}/lib)) mkdir -p ${SAMPLE_ROOT}/${STATION}/lib
-
-
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleDisplayAnimationJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleDisplayAnimationJni/SampleDisplayAnimationJni_AIS_InteractiveContext_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleDisplayAnimationJni/SampleDisplayAnimationJni_AIS_InteractiveContext_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleDisplayAnimationJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleDisplayAnimationJni/SampleDisplayAnimationJni_SampleDisplayAnimationPackage_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleDisplayAnimationJni/SampleDisplayAnimationJni_SampleDisplayAnimationPackage_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleDisplayAnimationJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleDisplayAnimationJni/SampleDisplayAnimationJni_V3d_Viewer_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleDisplayAnimationJni/SampleDisplayAnimationJni_V3d_Viewer_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleDisplayAnimationJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleDisplayAnimationJni/SampleDisplayAnimationJni_V3d_View_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleDisplayAnimationJni/SampleDisplayAnimationJni_V3d_View_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleDisplayAnimationJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleDisplayAnimationJni/SampleDisplayAnimationJni_Viewer_Viewer_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleDisplayAnimationJni/SampleDisplayAnimationJni_Viewer_Viewer_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleDisplayAnimationJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleDisplayAnimationJni/SampleDisplayAnimationJni_Viewer_View_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleDisplayAnimationJni/SampleDisplayAnimationJni_Viewer_View_java.o
diff --git a/samples/java/adm/SunOS/SampleDisplayAnimationJni.lnk b/samples/java/adm/SunOS/SampleDisplayAnimationJni.lnk
deleted file mode 100755
index d96c637b58..0000000000
--- a/samples/java/adm/SunOS/SampleDisplayAnimationJni.lnk
+++ /dev/null
@@ -1,64 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/opt/DEV5_1/SUNWspro/bin/CC "
-if (!($?CCFLAGS)) setenv CCFLAGS " -xchip=ultra -xarch=v8 -G -mt "
-
-if (!($?STLPortHome)) then
- setenv STLPortLib "."
-else
- if (!($?STLPortLib_CC)) setenv STLPortLib_CC "stlport_gcc"
- if (!($?STLPortLib)) setenv STLPortLib "$STLPortHome/lib"
- setenv STLPortLib "$STLPortLib -l$STLPortLib_CC"
-endif
-
-${CCHOME} ${CCFLAGS} -o ${SAMPLE_ROOT}/${STATION}/lib//libSampleDisplayAnimationJni.so \
- -L${SAMPLE_ROOT}/${STATION}/lib \
- -L${CASROOT}/${STATION}/lib -L${STLPortLib} \
-\
-${SAMPLE_ROOT}/${STATION}/obj/SampleDisplayAnimationJni/SampleDisplayAnimationJni_AIS_InteractiveContext_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleDisplayAnimationJni/SampleDisplayAnimationJni_SampleDisplayAnimationPackage_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleDisplayAnimationJni/SampleDisplayAnimationJni_V3d_Viewer_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleDisplayAnimationJni/SampleDisplayAnimationJni_V3d_View_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleDisplayAnimationJni/SampleDisplayAnimationJni_Viewer_Viewer_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleDisplayAnimationJni/SampleDisplayAnimationJni_Viewer_View_java.o \
-\
- -lTKjcas \
- -lTKPrim \
- -lTKFillet \
- -lPTKernel \
- -lTKPShape \
- -lTKOffset \
- -lTKShHealing \
- -lTKXSBase \
- -lTKIGES \
- -lTKCDF \
- -lTKPCAF \
- -lTKShapeSchema \
- -lTKSTEP \
- -lTKFeat \
- -lTKSamples \
- -lTKV3d \
- -lTKernel \
- -lTKGeomAlgo \
- -lTKGeomBase \
- -lTKBool \
- -lTKTopAlgo \
- -lTKBRep \
- -lTKHLR \
- -lTKG2d \
- -lTKV2d \
- -lTKService \
- -lTKMath \
- -lTKG3d \
- -lsocket -lnsl -lsunmath -lm -ldl \
- \
- \
- \
- \
- -L/usr/openwin/lib -lX11 -lXext -lXmu \
- \
- -L/usr/openwin/lib -ldps \
- -lC -lc ;
- set ld_status=$status
- if ( $?LD_LIBRARY_PATH ) then
- set ld_library_path=$LD_LIBRARY_PATH
- endif
-
diff --git a/samples/java/adm/SunOS/SampleDisplayAnimationPackage.comp b/samples/java/adm/SunOS/SampleDisplayAnimationPackage.comp
deleted file mode 100755
index a79d907c8f..0000000000
--- a/samples/java/adm/SunOS/SampleDisplayAnimationPackage.comp
+++ /dev/null
@@ -1,17 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/opt/DEV5_1/SUNWspro/bin/CC "
-if (!($?CCFLAGS)) setenv CCFLAGS " -PIC -xchip=ultra -xarch=v8 -Usun -DSOLARIS -DNO_CXX_EXCEPTION -vdelx -DCSFDB -O2 -DNo_Exception +w "
-
-if (!($?CCINC)) setenv CCINC "/opt/DEV5_1/SUNWspro/SC4.2/include/CC"
-
-if (!($?STLPortHome)) then
- setenv STLPortInclude "."
-else
- if (!($?STLPortInclude)) setenv STLPortInclude "$STLPortHome/stlport"
-endif
-
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/SampleDisplayAnimationPackage)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/SampleDisplayAnimationPackage
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/.tmp)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/.tmp
-if (!(-e ${SAMPLE_ROOT}/${STATION}/lib)) mkdir -p ${SAMPLE_ROOT}/${STATION}/lib
-
-
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleDisplayAnimationPackage/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/src/SampleDisplayAnimationPackage/SampleDisplayAnimationPackage.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleDisplayAnimationPackage/SampleDisplayAnimationPackage.o
diff --git a/samples/java/adm/SunOS/SampleGeometryJni.comp b/samples/java/adm/SunOS/SampleGeometryJni.comp
deleted file mode 100755
index 394b4eb746..0000000000
--- a/samples/java/adm/SunOS/SampleGeometryJni.comp
+++ /dev/null
@@ -1,26 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/opt/DEV5_1/SUNWspro/bin/CC "
-if (!($?CCFLAGS)) setenv CCFLAGS " -PIC -xchip=ultra -xarch=v8 -Usun -DSOLARIS -DNO_CXX_EXCEPTION -vdelx -DCSFDB -O2 -DNo_Exception +w "
-
-if (!($?CCINC)) setenv CCINC "/opt/DEV5_1/SUNWspro/SC4.2/include/CC"
-
-if (!($?STLPortHome)) then
- setenv STLPortInclude "."
-else
- if (!($?STLPortInclude)) setenv STLPortInclude "$STLPortHome/stlport"
-endif
-
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/SampleGeometryJni)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/SampleGeometryJni
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/.tmp)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/.tmp
-if (!(-e ${SAMPLE_ROOT}/${STATION}/lib)) mkdir -p ${SAMPLE_ROOT}/${STATION}/lib
-
-
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleGeometryJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleGeometryJni/SampleGeometryJni_AIS_InteractiveContext_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleGeometryJni/SampleGeometryJni_AIS_InteractiveContext_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleGeometryJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleGeometryJni/SampleGeometryJni_ISession2D_InteractiveContext_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleGeometryJni/SampleGeometryJni_ISession2D_InteractiveContext_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleGeometryJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleGeometryJni/SampleGeometryJni_SampleGeometryPackage_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleGeometryJni/SampleGeometryJni_SampleGeometryPackage_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleGeometryJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleGeometryJni/SampleGeometryJni_TCollection_AsciiString_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleGeometryJni/SampleGeometryJni_TCollection_AsciiString_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleGeometryJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleGeometryJni/SampleGeometryJni_V2d_Viewer_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleGeometryJni/SampleGeometryJni_V2d_Viewer_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleGeometryJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleGeometryJni/SampleGeometryJni_V2d_View_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleGeometryJni/SampleGeometryJni_V2d_View_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleGeometryJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleGeometryJni/SampleGeometryJni_V3d_Viewer_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleGeometryJni/SampleGeometryJni_V3d_Viewer_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleGeometryJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleGeometryJni/SampleGeometryJni_V3d_View_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleGeometryJni/SampleGeometryJni_V3d_View_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleGeometryJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleGeometryJni/SampleGeometryJni_Viewer_Viewer_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleGeometryJni/SampleGeometryJni_Viewer_Viewer_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleGeometryJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleGeometryJni/SampleGeometryJni_Viewer_View_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleGeometryJni/SampleGeometryJni_Viewer_View_java.o
diff --git a/samples/java/adm/SunOS/SampleGeometryJni.lnk b/samples/java/adm/SunOS/SampleGeometryJni.lnk
deleted file mode 100755
index fd57083ab9..0000000000
--- a/samples/java/adm/SunOS/SampleGeometryJni.lnk
+++ /dev/null
@@ -1,66 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/opt/DEV5_1/SUNWspro/bin/CC "
-if (!($?CCFLAGS)) setenv CCFLAGS " -xchip=ultra -xarch=v8 -G -mt "
-
-if (!($?STLPortHome)) then
- setenv STLPortLib "."
-else
- if (!($?STLPortLib_CC)) setenv STLPortLib_CC "stlport_gcc"
- if (!($?STLPortLib)) setenv STLPortLib "$STLPortHome/lib"
- setenv STLPortLib "$STLPortLib -l$STLPortLib_CC"
-endif
-
-${CCHOME} ${CCFLAGS} -o ${SAMPLE_ROOT}/${STATION}/lib//libSampleGeometryJni.so \
- -L${SAMPLE_ROOT}/${STATION}/lib \
- -L${CASROOT}/${STATION}/lib -L${STLPortLib} \
-\
-${SAMPLE_ROOT}/${STATION}/obj/SampleGeometryJni/SampleGeometryJni_AIS_InteractiveContext_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleGeometryJni/SampleGeometryJni_ISession2D_InteractiveContext_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleGeometryJni/SampleGeometryJni_SampleGeometryPackage_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleGeometryJni/SampleGeometryJni_TCollection_AsciiString_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleGeometryJni/SampleGeometryJni_V2d_Viewer_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleGeometryJni/SampleGeometryJni_V2d_View_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleGeometryJni/SampleGeometryJni_V3d_Viewer_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleGeometryJni/SampleGeometryJni_V3d_View_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleGeometryJni/SampleGeometryJni_Viewer_Viewer_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleGeometryJni/SampleGeometryJni_Viewer_View_java.o \
-\
- -lTKjcas \
- -lTKPrim \
- -lTKFillet \
- -lPTKernel \
- -lTKPShape \
- -lTKOffset \
- -lTKShHealing \
- -lTKXSBase \
- -lTKIGES \
- -lTKShapeSchema \
- -lTKSTEP \
- -lTKFeat \
- -lTKSamples \
- -lTKGeomAlgo \
- -lTKGeomBase \
- -lTKV3d \
- -lTKernel \
- -lTKBool \
- -lTKTopAlgo \
- -lTKBRep \
- -lTKV2d \
- -lTKService \
- -lTKHLR \
- -lTKG2d \
- -lTKMath \
- -lTKG3d \
- -lsocket -lnsl -lsunmath -lm -ldl \
- \
- \
- \
- \
- -L/usr/openwin/lib -lX11 -lXext -lXmu \
- \
- -L/usr/openwin/lib -ldps \
- -lC -lc ;
- set ld_status=$status
- if ( $?LD_LIBRARY_PATH ) then
- set ld_library_path=$LD_LIBRARY_PATH
- endif
-
diff --git a/samples/java/adm/SunOS/SampleGeometryPackage.comp b/samples/java/adm/SunOS/SampleGeometryPackage.comp
deleted file mode 100755
index 3b36ca9900..0000000000
--- a/samples/java/adm/SunOS/SampleGeometryPackage.comp
+++ /dev/null
@@ -1,17 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/opt/DEV5_1/SUNWspro/bin/CC "
-if (!($?CCFLAGS)) setenv CCFLAGS " -PIC -xchip=ultra -xarch=v8 -Usun -DSOLARIS -DNO_CXX_EXCEPTION -vdelx -DCSFDB -O2 -DNo_Exception +w "
-
-if (!($?CCINC)) setenv CCINC "/opt/DEV5_1/SUNWspro/SC4.2/include/CC"
-
-if (!($?STLPortHome)) then
- setenv STLPortInclude "."
-else
- if (!($?STLPortInclude)) setenv STLPortInclude "$STLPortHome/stlport"
-endif
-
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/SampleGeometryPackage)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/SampleGeometryPackage
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/.tmp)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/.tmp
-if (!(-e ${SAMPLE_ROOT}/${STATION}/lib)) mkdir -p ${SAMPLE_ROOT}/${STATION}/lib
-
-
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleGeometryPackage/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/src/SampleGeometryPackage/SampleGeometryPackage.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleGeometryPackage/SampleGeometryPackage.o
diff --git a/samples/java/adm/SunOS/SampleHLRJni.comp b/samples/java/adm/SunOS/SampleHLRJni.comp
deleted file mode 100755
index 7b10ae4992..0000000000
--- a/samples/java/adm/SunOS/SampleHLRJni.comp
+++ /dev/null
@@ -1,56 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/opt/DEV5_1/SUNWspro/bin/CC "
-if (!($?CCFLAGS)) setenv CCFLAGS " -PIC -xchip=ultra -xarch=v8 -Usun -DSOLARIS -DNO_CXX_EXCEPTION -vdelx -DCSFDB -O2 -DNo_Exception +w "
-
-if (!($?CCINC)) setenv CCINC "/opt/DEV5_1/SUNWspro/SC4.2/include/CC"
-
-if (!($?STLPortHome)) then
- setenv STLPortInclude "."
-else
- if (!($?STLPortInclude)) setenv STLPortInclude "$STLPortHome/stlport"
-endif
-
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/.tmp)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/.tmp
-if (!(-e ${SAMPLE_ROOT}/${STATION}/lib)) mkdir -p ${SAMPLE_ROOT}/${STATION}/lib
-
-
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_AIS_InteractiveContext_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_AIS_InteractiveContext_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_Aspect_Background_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_Background_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_Aspect_ColorCubeColorMap_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_ColorCubeColorMap_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_Aspect_ColorMapEntry_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_ColorMapEntry_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_Aspect_ColorMap_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_ColorMap_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_Aspect_ColorRampColorMap_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_ColorRampColorMap_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_Aspect_Driver_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_Driver_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_Aspect_FontMapEntry_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_FontMapEntry_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_Aspect_FontMap_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_FontMap_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_Aspect_FontStyle_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_FontStyle_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_Aspect_GenericColorMap_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_GenericColorMap_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_Aspect_GraphicDevice_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_GraphicDevice_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_Aspect_LineStyle_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_LineStyle_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_Aspect_MarkerStyle_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_MarkerStyle_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_Aspect_MarkMapEntry_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_MarkMapEntry_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_Aspect_MarkMap_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_MarkMap_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_Aspect_TypeMapEntry_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_TypeMapEntry_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_Aspect_TypeMap_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_TypeMap_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_Aspect_WidthMapEntry_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_WidthMapEntry_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_Aspect_WidthMap_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_WidthMap_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_Aspect_WindowDriver_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_WindowDriver_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_Aspect_Window_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_Window_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_ISession2D_InteractiveContext_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_ISession2D_InteractiveContext_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_Quantity_Color_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Quantity_Color_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_SampleHLRPackage_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_SampleHLRPackage_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_Standard_Type_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Standard_Type_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_TCollection_AsciiString_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_TCollection_AsciiString_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_TCollection_ExtendedString_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_TCollection_ExtendedString_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_TColQuantity_Array1OfLength_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_TColQuantity_Array1OfLength_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_TColQuantity_HArray1OfLength_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_TColQuantity_HArray1OfLength_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_TColStd_Array1OfBoolean_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_TColStd_Array1OfBoolean_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_TColStd_Array1OfReal_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_TColStd_Array1OfReal_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_TShort_Array1OfShortReal_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_TShort_Array1OfShortReal_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_V2d_DefaultMap_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_V2d_DefaultMap_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_V2d_Viewer_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_V2d_Viewer_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_V2d_View_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_V2d_View_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_V3d_Viewer_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_V3d_Viewer_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_V3d_View_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_V3d_View_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_Viewer_Viewer_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Viewer_Viewer_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleHLRJni/SampleHLRJni_Viewer_View_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Viewer_View_java.o
diff --git a/samples/java/adm/SunOS/SampleHLRJni.lnk b/samples/java/adm/SunOS/SampleHLRJni.lnk
deleted file mode 100755
index 647bae0a97..0000000000
--- a/samples/java/adm/SunOS/SampleHLRJni.lnk
+++ /dev/null
@@ -1,98 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/opt/DEV5_1/SUNWspro/bin/CC "
-if (!($?CCFLAGS)) setenv CCFLAGS " -xchip=ultra -xarch=v8 -G -mt "
-
-if (!($?STLPortHome)) then
- setenv STLPortLib "."
-else
- if (!($?STLPortLib_CC)) setenv STLPortLib_CC "stlport_gcc"
- if (!($?STLPortLib)) setenv STLPortLib "$STLPortHome/lib"
- setenv STLPortLib "$STLPortLib -l$STLPortLib_CC"
-endif
-
-${CCHOME} ${CCFLAGS} -o ${SAMPLE_ROOT}/${STATION}/lib//libSampleHLRJni.so \
- -L${SAMPLE_ROOT}/${STATION}/lib \
- -L${CASROOT}/${STATION}/lib -L${STLPortLib} \
-\
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_AIS_InteractiveContext_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_Background_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_ColorCubeColorMap_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_ColorMapEntry_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_ColorMap_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_ColorRampColorMap_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_Driver_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_FontMapEntry_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_FontMap_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_FontStyle_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_GenericColorMap_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_GraphicDevice_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_LineStyle_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_MarkerStyle_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_MarkMapEntry_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_MarkMap_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_TypeMapEntry_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_TypeMap_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_WidthMapEntry_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_WidthMap_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_WindowDriver_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Aspect_Window_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_ISession2D_InteractiveContext_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Quantity_Color_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_SampleHLRPackage_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Standard_Type_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_TCollection_AsciiString_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_TCollection_ExtendedString_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_TColQuantity_Array1OfLength_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_TColQuantity_HArray1OfLength_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_TColStd_Array1OfBoolean_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_TColStd_Array1OfReal_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_TShort_Array1OfShortReal_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_V2d_DefaultMap_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_V2d_Viewer_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_V2d_View_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_V3d_Viewer_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_V3d_View_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Viewer_Viewer_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleHLRJni/SampleHLRJni_Viewer_View_java.o \
-\
- -lTKjcas \
- -lTKPrim \
- -lTKFillet \
- -lPTKernel \
- -lTKPShape \
- -lTKOffset \
- -lTKShHealing \
- -lTKXSBase \
- -lTKIGES \
- -lTKCDF \
- -lTKPCAF \
- -lTKShapeSchema \
- -lTKSTEP \
- -lTKFeat \
- -lTKSamples \
- -lTKV3d \
- -lTKernel \
- -lTKGeomAlgo \
- -lTKGeomBase \
- -lTKBool \
- -lTKTopAlgo \
- -lTKBRep \
- -lTKV2d \
- -lTKService \
- -lTKHLR \
- -lTKG2d \
- -lTKMath \
- -lTKG3d \
- -lsocket -lnsl -lsunmath -lm -ldl \
- \
- \
- \
- \
- -L/usr/openwin/lib -lX11 -lXext -lXmu \
- \
- -L/usr/openwin/lib -ldps \
- -lC -lc ;
- set ld_status=$status
- if ( $?LD_LIBRARY_PATH ) then
- set ld_library_path=$LD_LIBRARY_PATH
- endif
-
diff --git a/samples/java/adm/SunOS/SampleHLRPackage.comp b/samples/java/adm/SunOS/SampleHLRPackage.comp
deleted file mode 100755
index 2db962405a..0000000000
--- a/samples/java/adm/SunOS/SampleHLRPackage.comp
+++ /dev/null
@@ -1,17 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/opt/DEV5_1/SUNWspro/bin/CC "
-if (!($?CCFLAGS)) setenv CCFLAGS " -PIC -xchip=ultra -xarch=v8 -Usun -DSOLARIS -DNO_CXX_EXCEPTION -vdelx -DCSFDB -O2 -DNo_Exception +w "
-
-if (!($?CCINC)) setenv CCINC "/opt/DEV5_1/SUNWspro/SC4.2/include/CC"
-
-if (!($?STLPortHome)) then
- setenv STLPortInclude "."
-else
- if (!($?STLPortInclude)) setenv STLPortInclude "$STLPortHome/stlport"
-endif
-
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRPackage)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRPackage
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/.tmp)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/.tmp
-if (!(-e ${SAMPLE_ROOT}/${STATION}/lib)) mkdir -p ${SAMPLE_ROOT}/${STATION}/lib
-
-
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleHLRPackage/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/src/SampleHLRPackage/SampleHLRPackage.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRPackage/SampleHLRPackage.o
diff --git a/samples/java/adm/SunOS/SampleImportExportJni.comp b/samples/java/adm/SunOS/SampleImportExportJni.comp
deleted file mode 100755
index 1c0f3c2cc4..0000000000
--- a/samples/java/adm/SunOS/SampleImportExportJni.comp
+++ /dev/null
@@ -1,23 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/opt/DEV5_1/SUNWspro/bin/CC "
-if (!($?CCFLAGS)) setenv CCFLAGS " -PIC -xchip=ultra -xarch=v8 -Usun -DSOLARIS -DNO_CXX_EXCEPTION -vdelx -DCSFDB -O2 -DNo_Exception +w "
-
-if (!($?CCINC)) setenv CCINC "/opt/DEV5_1/SUNWspro/SC4.2/include/CC"
-
-if (!($?STLPortHome)) then
- setenv STLPortInclude "."
-else
- if (!($?STLPortInclude)) setenv STLPortInclude "$STLPortHome/stlport"
-endif
-
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/SampleImportExportJni)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/SampleImportExportJni
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/.tmp)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/.tmp
-if (!(-e ${SAMPLE_ROOT}/${STATION}/lib)) mkdir -p ${SAMPLE_ROOT}/${STATION}/lib
-
-
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleImportExportJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleImportExportJni/SampleImportExportJni_AIS_InteractiveContext_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleImportExportJni/SampleImportExportJni_AIS_InteractiveContext_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleImportExportJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleImportExportJni/SampleImportExportJni_SampleImportExportPackage_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleImportExportJni/SampleImportExportJni_SampleImportExportPackage_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleImportExportJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleImportExportJni/SampleImportExportJni_TCollection_AsciiString_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleImportExportJni/SampleImportExportJni_TCollection_AsciiString_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleImportExportJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleImportExportJni/SampleImportExportJni_V3d_Viewer_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleImportExportJni/SampleImportExportJni_V3d_Viewer_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleImportExportJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleImportExportJni/SampleImportExportJni_V3d_View_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleImportExportJni/SampleImportExportJni_V3d_View_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleImportExportJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleImportExportJni/SampleImportExportJni_Viewer_Viewer_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleImportExportJni/SampleImportExportJni_Viewer_Viewer_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleImportExportJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleImportExportJni/SampleImportExportJni_Viewer_View_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleImportExportJni/SampleImportExportJni_Viewer_View_java.o
diff --git a/samples/java/adm/SunOS/SampleImportExportJni.lnk b/samples/java/adm/SunOS/SampleImportExportJni.lnk
deleted file mode 100755
index 8edbde77b3..0000000000
--- a/samples/java/adm/SunOS/SampleImportExportJni.lnk
+++ /dev/null
@@ -1,64 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/opt/DEV5_1/SUNWspro/bin/CC "
-if (!($?CCFLAGS)) setenv CCFLAGS " -xchip=ultra -xarch=v8 -G -mt "
-
-if (!($?STLPortHome)) then
- setenv STLPortLib "."
-else
- if (!($?STLPortLib_CC)) setenv STLPortLib_CC "stlport_gcc"
- if (!($?STLPortLib)) setenv STLPortLib "$STLPortHome/lib"
- setenv STLPortLib "$STLPortLib -l$STLPortLib_CC"
-endif
-
-${CCHOME} ${CCFLAGS} -o ${SAMPLE_ROOT}/${STATION}/lib//libSampleImportExportJni.so \
- -L${SAMPLE_ROOT}/${STATION}/lib \
- -L${CASROOT}/${STATION}/lib -L${STLPortLib} \
-\
-${SAMPLE_ROOT}/${STATION}/obj/SampleImportExportJni/SampleImportExportJni_AIS_InteractiveContext_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleImportExportJni/SampleImportExportJni_SampleImportExportPackage_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleImportExportJni/SampleImportExportJni_TCollection_AsciiString_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleImportExportJni/SampleImportExportJni_V3d_Viewer_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleImportExportJni/SampleImportExportJni_V3d_View_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleImportExportJni/SampleImportExportJni_Viewer_Viewer_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleImportExportJni/SampleImportExportJni_Viewer_View_java.o \
-\
- -lTKFillet \
- -lTKFeat \
- -lTKSamples \
- -lTKPShape \
- -lTKPCAF \
- -lTKCDF \
- -lTKernel \
- -lTKIGES \
- -lPTKernel \
- -lTKjcas \
- -lTKSTEP \
- -lTKXSBase \
- -lTKShHealing \
- -lTKOffset \
- -lTKBool \
- -lTKGeomBase \
- -lTKTopAlgo \
- -lTKPrim \
- -lTKGeomAlgo \
- -lTKV3d \
- -lTKBRep \
- -lTKHLR \
- -lTKG2d \
- -lTKV2d \
- -lTKService \
- -lTKMath \
- -lTKG3d \
- -lsocket -lnsl -lsunmath -lm -ldl \
- \
- \
- \
- \
- -L/usr/openwin/lib -lX11 -lXext -lXmu \
- \
- -L/usr/openwin/lib -ldps \
- -lC -lc ;
- set ld_status=$status
- if ( $?LD_LIBRARY_PATH ) then
- set ld_library_path=$LD_LIBRARY_PATH
- endif
-
diff --git a/samples/java/adm/SunOS/SampleImportExportPackage.comp b/samples/java/adm/SunOS/SampleImportExportPackage.comp
deleted file mode 100755
index 0b10651248..0000000000
--- a/samples/java/adm/SunOS/SampleImportExportPackage.comp
+++ /dev/null
@@ -1,17 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/opt/DEV5_1/SUNWspro/bin/CC "
-if (!($?CCFLAGS)) setenv CCFLAGS " -PIC -xchip=ultra -xarch=v8 -Usun -DSOLARIS -DNO_CXX_EXCEPTION -vdelx -DCSFDB -O2 -DNo_Exception +w "
-
-if (!($?CCINC)) setenv CCINC "/opt/DEV5_1/SUNWspro/SC4.2/include/CC"
-
-if (!($?STLPortHome)) then
- setenv STLPortInclude "."
-else
- if (!($?STLPortInclude)) setenv STLPortInclude "$STLPortHome/stlport"
-endif
-
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/SampleImportExportPackage)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/SampleImportExportPackage
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/.tmp)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/.tmp
-if (!(-e ${SAMPLE_ROOT}/${STATION}/lib)) mkdir -p ${SAMPLE_ROOT}/${STATION}/lib
-
-
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleImportExportPackage/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/src/SampleImportExportPackage/SampleImportExportPackage.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleImportExportPackage/SampleImportExportPackage.o
diff --git a/samples/java/adm/SunOS/SampleNativePaint.comp b/samples/java/adm/SunOS/SampleNativePaint.comp
deleted file mode 100755
index f0a19f8ade..0000000000
--- a/samples/java/adm/SunOS/SampleNativePaint.comp
+++ /dev/null
@@ -1,18 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/opt/DEV5_1/SUNWspro/bin/CC "
-if (!($?CCFLAGS)) setenv CCFLAGS " -PIC -xchip=ultra -xarch=v8 -Usun -DSOLARIS -DNO_CXX_EXCEPTION -vdelx -DCSFDB -O2 -DNo_Exception +w "
-
-if (!($?CCINC)) setenv CCINC "/opt/DEV5_1/SUNWspro/SC4.2/include/CC"
-
-if (!($?STLPortHome)) then
- setenv STLPortInclude "."
-else
- if (!($?STLPortInclude)) setenv STLPortInclude "$STLPortHome/stlport"
-endif
-
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/SampleNativePaint)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/SampleNativePaint
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/.tmp)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/.tmp
-if (!(-e ${SAMPLE_ROOT}/${STATION}/lib)) mkdir -p ${SAMPLE_ROOT}/${STATION}/lib
-
-
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleNativePaint/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/src/SampleNativePaint/CASCADEView2d.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleNativePaint/CASCADEView2d.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleNativePaint/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/src/SampleNativePaint/CASCADEView3d.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleNativePaint/CASCADEView3d.o
diff --git a/samples/java/adm/SunOS/SampleViewer3DJni.comp b/samples/java/adm/SunOS/SampleViewer3DJni.comp
deleted file mode 100755
index 04eb01f146..0000000000
--- a/samples/java/adm/SunOS/SampleViewer3DJni.comp
+++ /dev/null
@@ -1,46 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/opt/DEV5_1/SUNWspro/bin/CC "
-if (!($?CCFLAGS)) setenv CCFLAGS " -PIC -xchip=ultra -xarch=v8 -Usun -DSOLARIS -DNO_CXX_EXCEPTION -vdelx -DCSFDB -O2 -DNo_Exception +w "
-
-if (!($?CCINC)) setenv CCINC "/opt/DEV5_1/SUNWspro/SC4.2/include/CC"
-
-if (!($?STLPortHome)) then
- setenv STLPortInclude "."
-else
- if (!($?STLPortInclude)) setenv STLPortInclude "$STLPortHome/stlport"
-endif
-
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/.tmp)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/.tmp
-if (!(-e ${SAMPLE_ROOT}/${STATION}/lib)) mkdir -p ${SAMPLE_ROOT}/${STATION}/lib
-
-
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_AIS_InteractiveContext_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_AIS_InteractiveContext_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_AlienImage_AlienImage_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_AlienImage_AlienImage_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_Aspect_Array1OfEdge_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Aspect_Array1OfEdge_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_Aspect_GraphicDriver_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Aspect_GraphicDriver_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Array1OfVertexC_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Array1OfVertexC_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Array1OfVertex_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Array1OfVertex_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Array1OfVertexNC_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Array1OfVertexNC_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Array1OfVertexN_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Array1OfVertexN_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Array1OfVertexNT_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Array1OfVertexNT_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Array2OfVertex_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Array2OfVertex_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Array2OfVertexN_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Array2OfVertexN_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Array2OfVertexNT_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Array2OfVertexNT_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_GraphicDriver_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_GraphicDriver_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_HArray1OfBytes_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_HArray1OfBytes_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Vector_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Vector_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Vertex_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Vertex_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_VertexNC_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_VertexNC_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_VertexN_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_VertexN_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_SampleViewer3DPackage_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_SampleViewer3DPackage_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_Standard_Type_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Standard_Type_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_TCollection_AsciiString_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_TCollection_AsciiString_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_TCollection_ExtendedString_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_TCollection_ExtendedString_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_TColStd_Array1OfInteger_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_TColStd_Array1OfInteger_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_TColStd_Array1OfReal_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_TColStd_Array1OfReal_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_TColStd_Array2OfReal_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_TColStd_Array2OfReal_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_TColStd_HArray1OfReal_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_TColStd_HArray1OfReal_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_V3d_Viewer_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_V3d_Viewer_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_V3d_View_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_V3d_View_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_Viewer_Viewer_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Viewer_Viewer_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SampleViewer3DJni/SampleViewer3DJni_Viewer_View_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Viewer_View_java.o
diff --git a/samples/java/adm/SunOS/SampleViewer3DJni.lnk b/samples/java/adm/SunOS/SampleViewer3DJni.lnk
deleted file mode 100755
index c4a54f24fb..0000000000
--- a/samples/java/adm/SunOS/SampleViewer3DJni.lnk
+++ /dev/null
@@ -1,75 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/opt/DEV5_1/SUNWspro/bin/CC "
-if (!($?CCFLAGS)) setenv CCFLAGS " -xchip=ultra -xarch=v8 -G -mt "
-
-if (!($?STLPortHome)) then
- setenv STLPortLib "."
-else
- if (!($?STLPortLib_CC)) setenv STLPortLib_CC "stlport_gcc"
- if (!($?STLPortLib)) setenv STLPortLib "$STLPortHome/lib"
- setenv STLPortLib "$STLPortLib -l$STLPortLib_CC"
-endif
-
-${CCHOME} ${CCFLAGS} -o ${SAMPLE_ROOT}/${STATION}/lib//libSampleViewer3DJni.so \
- -L${SAMPLE_ROOT}/${STATION}/lib \
- -L${CASROOT}/${STATION}/lib -L${STLPortLib} \
-\
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_AIS_InteractiveContext_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_AlienImage_AlienImage_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Aspect_Array1OfEdge_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Aspect_GraphicDriver_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Array1OfVertexC_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Array1OfVertex_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Array1OfVertexNC_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Array1OfVertexN_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Array1OfVertexNT_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Array2OfVertex_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Array2OfVertexN_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Array2OfVertexNT_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_GraphicDriver_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_HArray1OfBytes_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Vector_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_Vertex_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_VertexNC_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Graphic3d_VertexN_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_SampleViewer3DPackage_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Standard_Type_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_TCollection_AsciiString_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_TCollection_ExtendedString_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_TColStd_Array1OfInteger_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_TColStd_Array1OfReal_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_TColStd_Array2OfReal_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_TColStd_HArray1OfReal_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_V3d_Viewer_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_V3d_View_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Viewer_Viewer_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DJni/SampleViewer3DJni_Viewer_View_java.o \
-\
- -lTKjcas \
- -lTKSamples2 \
- -lTKPrim \
- -lTKV3d \
- -lTKernel \
- -lTKGeomAlgo \
- -lTKGeomBase \
- -lTKBool \
- -lTKTopAlgo \
- -lTKBRep \
- -lTKHLR \
- -lTKG2d \
- -lTKV2d \
- -lTKService \
- -lTKMath \
- -lTKG3d \
- -lsocket -lnsl -lsunmath -lm -ldl \
- \
- \
- \
- \
- -L/usr/openwin/lib -lX11 -lXext -lXmu \
- -L/usr/openwin/lib -ldps \
- -lC -lc ;
- set ld_status=$status
- if ( $?LD_LIBRARY_PATH ) then
- set ld_library_path=$LD_LIBRARY_PATH
- endif
-
diff --git a/samples/java/adm/SunOS/SampleViewer3DPackage.comp b/samples/java/adm/SunOS/SampleViewer3DPackage.comp
deleted file mode 100755
index 762b2b9390..0000000000
--- a/samples/java/adm/SunOS/SampleViewer3DPackage.comp
+++ /dev/null
@@ -1,17 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/opt/DEV5_1/SUNWspro/bin/CC "
-if (!($?CCFLAGS)) setenv CCFLAGS " -PIC -xchip=ultra -xarch=v8 -Usun -DSOLARIS -DNO_CXX_EXCEPTION -vdelx -DCSFDB -O2 -DNo_Exception +w "
-
-if (!($?CCINC)) setenv CCINC "/opt/DEV5_1/SUNWspro/SC4.2/include/CC"
-
-if (!($?STLPortHome)) then
- setenv STLPortInclude "."
-else
- if (!($?STLPortInclude)) setenv STLPortInclude "$STLPortHome/stlport"
-endif
-
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DPackage)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DPackage
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/.tmp)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/.tmp
-if (!(-e ${SAMPLE_ROOT}/${STATION}/lib)) mkdir -p ${SAMPLE_ROOT}/${STATION}/lib
-
-
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleViewer3DPackage/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/src/SampleViewer3DPackage/SampleViewer3DPackage.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DPackage/SampleViewer3DPackage.o
diff --git a/samples/java/adm/SunOS/SamplesTopologyJni.comp b/samples/java/adm/SunOS/SamplesTopologyJni.comp
deleted file mode 100755
index b4e9319603..0000000000
--- a/samples/java/adm/SunOS/SamplesTopologyJni.comp
+++ /dev/null
@@ -1,23 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/opt/DEV5_1/SUNWspro/bin/CC "
-if (!($?CCFLAGS)) setenv CCFLAGS " -PIC -xchip=ultra -xarch=v8 -Usun -DSOLARIS -DNO_CXX_EXCEPTION -vdelx -DCSFDB -O2 -DNo_Exception +w "
-
-if (!($?CCINC)) setenv CCINC "/opt/DEV5_1/SUNWspro/SC4.2/include/CC"
-
-if (!($?STLPortHome)) then
- setenv STLPortInclude "."
-else
- if (!($?STLPortInclude)) setenv STLPortInclude "$STLPortHome/stlport"
-endif
-
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/SamplesTopologyJni)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/SamplesTopologyJni
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/.tmp)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/.tmp
-if (!(-e ${SAMPLE_ROOT}/${STATION}/lib)) mkdir -p ${SAMPLE_ROOT}/${STATION}/lib
-
-
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SamplesTopologyJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SamplesTopologyJni/SamplesTopologyJni_AIS_InteractiveContext_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SamplesTopologyJni/SamplesTopologyJni_AIS_InteractiveContext_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SamplesTopologyJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SamplesTopologyJni/SamplesTopologyJni_SamplesTopologyPackage_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SamplesTopologyJni/SamplesTopologyJni_SamplesTopologyPackage_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SamplesTopologyJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SamplesTopologyJni/SamplesTopologyJni_TCollection_AsciiString_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SamplesTopologyJni/SamplesTopologyJni_TCollection_AsciiString_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SamplesTopologyJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SamplesTopologyJni/SamplesTopologyJni_V3d_Viewer_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SamplesTopologyJni/SamplesTopologyJni_V3d_Viewer_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SamplesTopologyJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SamplesTopologyJni/SamplesTopologyJni_V3d_View_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SamplesTopologyJni/SamplesTopologyJni_V3d_View_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SamplesTopologyJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SamplesTopologyJni/SamplesTopologyJni_Viewer_Viewer_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SamplesTopologyJni/SamplesTopologyJni_Viewer_Viewer_java.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SamplesTopologyJni/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/drv/SamplesTopologyJni/SamplesTopologyJni_Viewer_View_java.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SamplesTopologyJni/SamplesTopologyJni_Viewer_View_java.o
diff --git a/samples/java/adm/SunOS/SamplesTopologyJni.lnk b/samples/java/adm/SunOS/SamplesTopologyJni.lnk
deleted file mode 100755
index f9ecf2d3c5..0000000000
--- a/samples/java/adm/SunOS/SamplesTopologyJni.lnk
+++ /dev/null
@@ -1,65 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/opt/DEV5_1/SUNWspro/bin/CC "
-if (!($?CCFLAGS)) setenv CCFLAGS "-xchip=ultra -xarch=v8 -G -mt "
-
-if (!($?STLPortHome)) then
- setenv STLPortLib "."
-else
- if (!($?STLPortLib_CC)) setenv STLPortLib_CC "stlport_gcc"
- if (!($?STLPortLib)) setenv STLPortLib "$STLPortHome/lib"
- setenv STLPortLib "$STLPortLib -l$STLPortLib_CC"
-endif
-
-${CCHOME} ${CCFLAGS} -o ${SAMPLE_ROOT}/${STATION}/lib//libSamplesTopologyJni.so \
- -L${SAMPLE_ROOT}/${STATION}/lib \
- -L${CASROOT}/${STATION}/lib -L${STLPortLib} \
-\
-${SAMPLE_ROOT}/${STATION}/obj/SamplesTopologyJni/SamplesTopologyJni_AIS_InteractiveContext_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SamplesTopologyJni/SamplesTopologyJni_SamplesTopologyPackage_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SamplesTopologyJni/SamplesTopologyJni_TCollection_AsciiString_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SamplesTopologyJni/SamplesTopologyJni_V3d_Viewer_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SamplesTopologyJni/SamplesTopologyJni_V3d_View_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SamplesTopologyJni/SamplesTopologyJni_Viewer_Viewer_java.o \
-${SAMPLE_ROOT}/${STATION}/obj/SamplesTopologyJni/SamplesTopologyJni_Viewer_View_java.o \
-\
- -lTKjcas \
- -lPTKernel \
- -lTKPShape \
- -lTKShHealing \
- -lTKXSBase \
- -lTKIGES \
- -lTKCDF \
- -lTKPCAF \
- -lTKShapeSchema \
- -lTKSTEP \
- -lTKSamples \
- -lTKFeat \
- -lTKOffset \
- -lTKBool \
- -lTKTopAlgo \
- -lTKGeomBase \
- -lTKFillet \
- -lTKGeomAlgo \
- -lTKPrim \
- -lTKV3d \
- -lTKernel \
- -lTKBRep \
- -lTKHLR \
- -lTKV2d \
- -lTKService \
- -lTKG2d \
- -lTKMath \
- -lTKG3d \
- -lsocket -lnsl -lsunmath -lm -ldl \
- \
- \
- \
- \
- -L/usr/openwin/lib -lX11 -lXext -lXmu \
- \
- -L/usr/openwin/lib -ldps \
- -lC -lc ;
- set ld_status=$status
- if ( $?LD_LIBRARY_PATH ) then
- set ld_library_path=$LD_LIBRARY_PATH
- endif
-
diff --git a/samples/java/adm/SunOS/SamplesTopologyPackage.comp b/samples/java/adm/SunOS/SamplesTopologyPackage.comp
deleted file mode 100755
index 9d41e716ae..0000000000
--- a/samples/java/adm/SunOS/SamplesTopologyPackage.comp
+++ /dev/null
@@ -1,17 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/opt/DEV5_1/SUNWspro/bin/CC "
-if (!($?CCFLAGS)) setenv CCFLAGS " -PIC -xchip=ultra -xarch=v8 -Usun -DSOLARIS -DNO_CXX_EXCEPTION -vdelx -DCSFDB -O2 -DNo_Exception +w "
-
-if (!($?CCINC)) setenv CCINC "/opt/DEV5_1/SUNWspro/SC4.2/include/CC"
-
-if (!($?STLPortHome)) then
- setenv STLPortInclude "."
-else
- if (!($?STLPortInclude)) setenv STLPortInclude "$STLPortHome/stlport"
-endif
-
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/SamplesTopologyPackage)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/SamplesTopologyPackage
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/.tmp)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/.tmp
-if (!(-e ${SAMPLE_ROOT}/${STATION}/lib)) mkdir -p ${SAMPLE_ROOT}/${STATION}/lib
-
-
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SamplesTopologyPackage/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/src/SamplesTopologyPackage/SamplesTopologyPackage.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SamplesTopologyPackage/SamplesTopologyPackage.o
diff --git a/samples/java/adm/SunOS/TKNativePaint.lnk b/samples/java/adm/SunOS/TKNativePaint.lnk
deleted file mode 100755
index 3c7bc36b5a..0000000000
--- a/samples/java/adm/SunOS/TKNativePaint.lnk
+++ /dev/null
@@ -1,78 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/opt/DEV5_1/SUNWspro/bin/CC "
-if (!($?CCFLAGS)) setenv CCFLAGS " -xchip=ultra -xarch=v8 -G -mt "
-
-if (!($?STLPortHome)) then
- setenv STLPortLib "."
-else
- if (!($?STLPortLib_CC)) setenv STLPortLib_CC "stlport_gcc"
- if (!($?STLPortLib)) setenv STLPortLib "$STLPortHome/lib"
- setenv STLPortLib "$STLPortLib -l$STLPortLib_CC"
-endif
-
-${CCHOME} ${CCFLAGS} -o ${SAMPLE_ROOT}/${STATION}/lib//libTKNativePaint.so \
- -L${SAMPLE_ROOT}/${STATION}/lib \
- -L${CASROOT}/${STATION}/lib -L${STLPortLib} \
-${SAMPLE_ROOT}/${STATION}/obj/SampleNativePaint/CASCADEView3d.o \
-${SAMPLE_ROOT}/${STATION}/obj/SampleNativePaint/CASCADEView2d.o \
-\
--lTKernel \
--lTKMath \
--lTKGeomBase \
--lTKG2d \
--lTKG3d \
--lTKBRep \
--lTKGeomAlgo \
--lTKTopAlgo \
--lTKPrim \
--lTKHLR \
--lTKService \
--lTKV2d \
--lTKV3d \
--lTKjcas \
- \
- -L${JAVAHOME}/jre/lib/sparc -ljawt \
- \
- -lC -lc ;
- set ld_status=$status
- if ( $?LD_LIBRARY_PATH ) then
- set ld_library_path=$LD_LIBRARY_PATH
- endif
-if ( $?LD_LIBRARY_PATH ) then
- setenv LD_LIBRARY_PATH ${SAMPLE_ROOT}/${STATION}/lib:${CASROOT}/${STATION}/lib::${LD_LIBRARY_PATH}
-else
- setenv LD_LIBRARY_PATH ${SAMPLE_ROOT}/${STATION}/lib:${CASROOT}/${STATION}/lib:
-endif
-echo "Check of undefined symbols with LD_LIBRARY_PATH : $LD_LIBRARY_PATH"
-/usr/ccs/bin/ld -o /dev/null \
-\
-${SAMPLE_ROOT}/${STATION}/lib//libTKNativePaint.so\
--lTKernel \
--lTKMath \
--lTKGeomBase \
--lTKG2d \
--lTKG3d \
--lTKBRep \
--lTKGeomAlgo \
--lTKTopAlgo \
--lTKPrim \
--lTKHLR \
--lTKService \
--lTKV2d \
--lTKV3d \
--lTKjcas \
- \
- -L${JAVAHOME}/jre/lib/sparc -ljawt \
- \
-;
- if ( $status ) then
- echo "Check failed"
- else
- echo "Check successed"
- endif
- if ( $?ld_library_path ) then
- setenv LD_LIBRARY_PATH $ld_library_path
- else
- unsetenv LD_LIBRARY_PATH
- endif
- set status=$ld_status
-
diff --git a/samples/java/adm/SunOS/TKSamples.lnk b/samples/java/adm/SunOS/TKSamples.lnk
deleted file mode 100755
index fa70299f03..0000000000
--- a/samples/java/adm/SunOS/TKSamples.lnk
+++ /dev/null
@@ -1,66 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/opt/DEV5_1/SUNWspro/bin/CC "
-if (!($?CCFLAGS)) setenv CCFLAGS " -xchip=ultra -xarch=v8 -G -mt "
-
-if (!($?STLPortHome)) then
- setenv STLPortLib "."
-else
- if (!($?STLPortLib_CC)) setenv STLPortLib_CC "stlport_gcc"
- if (!($?STLPortLib)) setenv STLPortLib "$STLPortHome/lib"
- setenv STLPortLib "$STLPortLib -l$STLPortLib_CC"
-endif
-
-${CCHOME} ${CCFLAGS} -o ${SAMPLE_ROOT}/${STATION}/lib//libTKSamples.so \
- -L${SAMPLE_ROOT}/${STATION}/lib \
- -L${CASROOT}/${STATION}/lib -L${STLPortLib} \
-\
- ${SAMPLE_ROOT}/${STATION}/obj/SampleAISBasicPackage/SampleAISBasicPackage.o \
- ${SAMPLE_ROOT}/${STATION}/obj/SampleAISDisplayModePackage/SampleAISDisplayModePackage.o \
- ${SAMPLE_ROOT}/${STATION}/obj/SampleAISSelectPackage/SampleAISSelectPackage.o \
- ${SAMPLE_ROOT}/${STATION}/obj/SampleDisplayAnimationPackage/SampleDisplayAnimationPackage.o \
- ${SAMPLE_ROOT}/${STATION}/obj/SampleGeometryPackage/SampleGeometryPackage.o \
- ${SAMPLE_ROOT}/${STATION}/obj/SampleHLRPackage/SampleHLRPackage.o \
- ${SAMPLE_ROOT}/${STATION}/obj/SampleImportExportPackage/SampleImportExportPackage.o \
- ${SAMPLE_ROOT}/${STATION}/obj/SamplesTopologyPackage/SamplesTopologyPackage.o \
- ${SAMPLE_ROOT}/${STATION}/obj/User/User_Cylinder.o \
- ${SAMPLE_ROOT}/${STATION}/obj/ISession/ISession_Point.o \
- ${SAMPLE_ROOT}/${STATION}/obj/ISession/ISession_Curve.o \
- ${SAMPLE_ROOT}/${STATION}/obj/ISession/ISession_Surface.o \
- ${SAMPLE_ROOT}/${STATION}/obj/ISession/ISession_Text.o \
- ${SAMPLE_ROOT}/${STATION}/obj/ISession/ISession_Direction.o \
- ${SAMPLE_ROOT}/${STATION}/obj/ISession2D/ISession2D_InteractiveContext.o \
- ${SAMPLE_ROOT}/${STATION}/obj/ISession2D/ISession2D_SensitiveCurve.o \
- ${SAMPLE_ROOT}/${STATION}/obj/ISession2D/ISession2D_Curve.o \
- ${SAMPLE_ROOT}/${STATION}/obj/ISession2D/ISession2D_ObjectOwner.o \
- ${SAMPLE_ROOT}/${STATION}/obj/ISession2D/ISession2D_Shape.o \
-\
- -lTKernel \
- -lTKBool \
- -lTKGeomAlgo \
- -lTKXSBase \
- -lTKIGES \
- -lTKFeat \
- -lTKMath \
- -lTKG3d \
- -lTKG2d \
- -lTKOffset \
- -lTKGeomBase \
- -lTKTopAlgo \
- -lTKV3d \
- -lTKService \
- -lPTKernel \
- -lTKShapeSchema \
- -lTKShHealing \
- -lTKBRep \
- -lTKFillet \
- -lTKHLR \
- -lTKV2d \
- -lTKPShape \
- -lTKSTEP \
- -lTKPrim \
- -lsocket -lnsl -lsunmath -lm -ldl \
- -L/usr/openwin/lib -lX11 -lXext -lXmu \
- \
- \
- \
- \
- -lC -lc ;
diff --git a/samples/java/adm/SunOS/TKSamples2.lnk b/samples/java/adm/SunOS/TKSamples2.lnk
deleted file mode 100755
index 57ae672b5d..0000000000
--- a/samples/java/adm/SunOS/TKSamples2.lnk
+++ /dev/null
@@ -1,69 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/opt/DEV5_1/SUNWspro/bin/CC "
-if (!($?CCFLAGS)) setenv CCFLAGS " -xchip=ultra -xarch=v8 -G -mt "
-
-if (!($?STLPortHome)) then
- setenv STLPortLib "."
-else
- if (!($?STLPortLib_CC)) setenv STLPortLib_CC "stlport_gcc"
- if (!($?STLPortLib)) setenv STLPortLib "$STLPortHome/lib"
- setenv STLPortLib "$STLPortLib -l$STLPortLib_CC"
-endif
-
-${CCHOME} ${CCFLAGS} -o ${SAMPLE_ROOT}/${STATION}/lib//libTKSamples2.so \
- -L${SAMPLE_ROOT}/${STATION}/lib \
- -L${CASROOT}/${STATION}/lib -L${STLPortLib} \
-\
- ${SAMPLE_ROOT}/${STATION}/obj/SampleViewer3DPackage/SampleViewer3DPackage.o \
-\
- -lTKMath \
- -lTKernel \
- -lTKService \
- -lTKV3d \
- -lTKG2d \
- -lTKV2d \
- -lTKBRep \
- -lTKGeomBase \
- -lTKTopAlgo \
- -lTKG3d \
- -lTKPrim \
- -lsocket -lnsl -lsunmath -lm -ldl \
- \
- -L/usr/openwin/lib -lX11 -lXext -lXmu \
- -lC -lc ;
- set ld_status=$status
- if ( $?LD_LIBRARY_PATH ) then
- set ld_library_path=$LD_LIBRARY_PATH
- endif
-if ( $?LD_LIBRARY_PATH ) then
- setenv LD_LIBRARY_PATH ${SAMPLE_ROOT}/${STATION}/lib:${CASROOT}/${STATION}/lib::${LD_LIBRARY_PATH}
-else
- setenv LD_LIBRARY_PATH ${SAMPLE_ROOT}/${STATION}/lib:${CASROOT}/${STATION}/lib:
-endif
-echo "Check of undefined symbols with LD_LIBRARY_PATH : $LD_LIBRARY_PATH"
-/usr/ccs/bin/ld -o /dev/null \
-\
-${SAMPLE_ROOT}/${STATION}/lib//libTKSamples2.so\
- -lTKMath \
- -lTKernel \
- -lTKService \
- -lTKV3d \
- -lTKG2d \
- -lTKV2d \
- -lTKBRep \
- -lTKGeomBase \
- -lTKTopAlgo \
- -lTKG3d \
- -lTKPrim \
- ;
- if ( $status ) then
- echo "Check failed"
- else
- echo "Check successed"
- endif
- if ( $?ld_library_path ) then
- setenv LD_LIBRARY_PATH $ld_library_path
- else
- unsetenv LD_LIBRARY_PATH
- endif
- set status=$ld_status
-
diff --git a/samples/java/adm/SunOS/TKjcas.lnk b/samples/java/adm/SunOS/TKjcas.lnk
deleted file mode 100755
index e002dfe97b..0000000000
--- a/samples/java/adm/SunOS/TKjcas.lnk
+++ /dev/null
@@ -1,49 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/opt/DEV5_1/SUNWspro/bin/CC "
-if (!($?CCFLAGS)) setenv CCFLAGS "-xchip=ultra -xarch=v8 -G -mt "
-
-if (!($?STLPortHome)) then
- setenv STLPortLib "."
-else
- if (!($?STLPortLib_CC)) setenv STLPortLib_CC "stlport_gcc"
- if (!($?STLPortLib)) setenv STLPortLib "$STLPortHome/lib"
- setenv STLPortLib "$STLPortLib -l$STLPortLib_CC"
-endif
-
-${CCHOME} ${CCFLAGS} -o ${SAMPLE_ROOT}/${STATION}/lib//libTKjcas.so \
- -L${SAMPLE_ROOT}/${STATION}/lib \
- -L${CASROOT}/${STATION}/lib -L${STLPortLib} \
-\
- ${SAMPLE_ROOT}/${STATION}/obj/jcas/jcas.o \
- ${SAMPLE_ROOT}/${STATION}/obj/jcas/jcas_Object.o \
- ${SAMPLE_ROOT}/${STATION}/obj/jcas/jcas_Transient.o \
-\
- -lTKernel \
- -lsocket -lnsl -lsunmath -lm -ldl \
- -lC -lc ;
- set ld_status=$status
- if ( $?LD_LIBRARY_PATH ) then
- set ld_library_path=$LD_LIBRARY_PATH
- endif
-if ( $?LD_LIBRARY_PATH ) then
- setenv LD_LIBRARY_PATH ${SAMPLE_ROOT}/${STATION}/lib:${CASROOT}/${STATION}/lib::${LD_LIBRARY_PATH}
-else
- setenv LD_LIBRARY_PATH ${SAMPLE_ROOT}/${STATION}/lib:${CASROOT}/${STATION}/lib:
-endif
-echo "Check of undefined symbols with LD_LIBRARY_PATH : $LD_LIBRARY_PATH"
-/usr/ccs/bin/ld -o /dev/null \
-\
-${SAMPLE_ROOT}/${STATION}/lib//libTKjcas.so\
- -lTKernel \
- ;
- if ( $status ) then
- echo "Check failed"
- else
- echo "Check successed"
- endif
- if ( $?ld_library_path ) then
- setenv LD_LIBRARY_PATH $ld_library_path
- else
- unsetenv LD_LIBRARY_PATH
- endif
- set status=$ld_status
-
diff --git a/samples/java/adm/SunOS/User.comp b/samples/java/adm/SunOS/User.comp
deleted file mode 100755
index a76ae6c580..0000000000
--- a/samples/java/adm/SunOS/User.comp
+++ /dev/null
@@ -1,17 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/opt/DEV5_1/SUNWspro/bin/CC "
-if (!($?CCFLAGS)) setenv CCFLAGS " -PIC -xchip=ultra -xarch=v8 -Usun -DSOLARIS -DNO_CXX_EXCEPTION -vdelx -DCSFDB -O2 -DNo_Exception +w "
-
-if (!($?CCINC)) setenv CCINC "/opt/DEV5_1/SUNWspro/SC4.2/include/CC"
-
-if (!($?STLPortHome)) then
- setenv STLPortInclude "."
-else
- if (!($?STLPortInclude)) setenv STLPortInclude "$STLPortHome/stlport"
-endif
-
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/User)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/User
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/.tmp)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/.tmp
-if (!(-e ${SAMPLE_ROOT}/${STATION}/lib)) mkdir -p ${SAMPLE_ROOT}/${STATION}/lib
-
-
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/User/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/src/User/User_Cylinder.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/User/User_Cylinder.o
diff --git a/samples/java/adm/SunOS/jcas.comp b/samples/java/adm/SunOS/jcas.comp
deleted file mode 100755
index c8c5b7e313..0000000000
--- a/samples/java/adm/SunOS/jcas.comp
+++ /dev/null
@@ -1,19 +0,0 @@
-if (!($?CCHOME)) setenv CCHOME "/opt/DEV5_1/SUNWspro/bin/CC "
-if (!($?CCFLAGS)) setenv CCFLAGS " -PIC -xchip=ultra -xarch=v8 -Usun -DSOLARIS -DNO_CXX_EXCEPTION -vdelx -DCSFDB -O2 -DNo_Exception +w "
-
-if (!($?CCINC)) setenv CCINC "/opt/DEV5_1/SUNWspro/SC4.2/include/CC"
-
-if (!($?STLPortHome)) then
- setenv STLPortInclude "."
-else
- if (!($?STLPortInclude)) setenv STLPortInclude "$STLPortHome/stlport"
-endif
-
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/jcas)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/jcas
-if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/.tmp)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/.tmp
-if (!(-e ${SAMPLE_ROOT}/${STATION}/lib)) mkdir -p ${SAMPLE_ROOT}/${STATION}/lib
-
-
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -I${CASROOT}/drv/jcas/. -c ${CASROOT}/src/jcas/jcas.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/jcas/jcas.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -I${CASROOT}/drv/jcas/. -c ${CASROOT}/src/jcas/jcas_Object.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/jcas/jcas_Object.o
-${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/solaris -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -I${CASROOT}/drv/jcas/. -c ${CASROOT}/src/jcas/jcas_Transient.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/jcas/jcas_Transient.o
diff --git a/samples/java/adm/win32/CASCADESamplesJni.vcproj b/samples/java/adm/win32/CASCADESamplesJni.vcproj
deleted file mode 100755
index c862b982cf..0000000000
--- a/samples/java/adm/win32/CASCADESamplesJni.vcproj
+++ /dev/null
@@ -1,2282 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/samples/java/adm/win32/Run_MSVC.bat b/samples/java/adm/win32/Run_MSVC.bat
deleted file mode 100644
index 53891e6bf9..0000000000
--- a/samples/java/adm/win32/Run_MSVC.bat
+++ /dev/null
@@ -1,19 +0,0 @@
-@echo off
-rem Launch MS VC with environment prepared for building OCCT Java sample
-
-rem Set build environment
-call %~dp0..\..\..\..\ros\env_build.bat vc8 win32
-
-rem Define path to project file
-set PRJFILE=%~dp0SAMPLE.sln
-
-rem Launch Visual Studio - either professional (devenv) or Express, as available
-if exist %DevEnvDir%\devenv.exe (
- start %DevEnvDir%\devenv.exe %PRJFILE% /useenv
-) else if exist %DevEnvDir%\VCExpress.exe (
- start %DevEnvDir%\VCExpress.exe %PRJFILE% /useenv
-) else (
- echo Error: Could not find MS Visual Studio ^(%VCVER%^)
- echo Check relevant environment variable ^(e.g. VS80COMNTOOLS for vc8^)
-)
-
diff --git a/samples/java/adm/win32/SAMPLE.sln b/samples/java/adm/win32/SAMPLE.sln
deleted file mode 100755
index 7dd6fe82fa..0000000000
--- a/samples/java/adm/win32/SAMPLE.sln
+++ /dev/null
@@ -1,136 +0,0 @@
-Microsoft Visual Studio Solution File, Format Version 9.00
-# Visual Studio 2005
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CASCADESamplesJni", "CASCADESamplesJni.vcproj", "{8DEBD578-2878-464F-9C01-892D53D494E2}"
- ProjectSection(ProjectDependencies) = postProject
- {502DF869-EFEC-4E18-BE1C-7CE7A507A947} = {502DF869-EFEC-4E18-BE1C-7CE7A507A947}
- EndProjectSection
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SampleAISBasicJni", "SampleAISBasicJni.vcproj", "{21AA79D9-F0A8-4A68-A4EA-9E623046DF08}"
- ProjectSection(ProjectDependencies) = postProject
- {03037241-CE41-4D9C-B981-0DBC60B0686D} = {03037241-CE41-4D9C-B981-0DBC60B0686D}
- EndProjectSection
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SampleAISDisplayModeJni", "SampleAISDisplayModeJni.vcproj", "{25614FA5-E94F-4E86-9FC1-97FD71790710}"
- ProjectSection(ProjectDependencies) = postProject
- {21AA79D9-F0A8-4A68-A4EA-9E623046DF08} = {21AA79D9-F0A8-4A68-A4EA-9E623046DF08}
- EndProjectSection
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SampleAISSelectJni", "SampleAISSelectJni.vcproj", "{FDC347F7-D9A0-4D07-B223-CC2A3F1BEB9D}"
- ProjectSection(ProjectDependencies) = postProject
- {25614FA5-E94F-4E86-9FC1-97FD71790710} = {25614FA5-E94F-4E86-9FC1-97FD71790710}
- EndProjectSection
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SampleDisplayAnimationJni", "SampleDisplayAnimationJni.vcproj", "{8A832152-5825-4FAB-A459-B360FC52BEEB}"
- ProjectSection(ProjectDependencies) = postProject
- {FDC347F7-D9A0-4D07-B223-CC2A3F1BEB9D} = {FDC347F7-D9A0-4D07-B223-CC2A3F1BEB9D}
- EndProjectSection
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SampleGeometryJni", "SampleGeometryJni.vcproj", "{EADBD6B4-E6F5-405D-8AF3-496A6472D304}"
- ProjectSection(ProjectDependencies) = postProject
- {8A832152-5825-4FAB-A459-B360FC52BEEB} = {8A832152-5825-4FAB-A459-B360FC52BEEB}
- EndProjectSection
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SampleHLRJni", "SampleHLRJni.vcproj", "{378E3840-7587-49C3-B73C-7FBD4ACC4BE9}"
- ProjectSection(ProjectDependencies) = postProject
- {EADBD6B4-E6F5-405D-8AF3-496A6472D304} = {EADBD6B4-E6F5-405D-8AF3-496A6472D304}
- EndProjectSection
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SampleImportExportJni", "SampleImportExportJni.vcproj", "{4318F255-7436-48BA-A686-372E4AAE972D}"
- ProjectSection(ProjectDependencies) = postProject
- {378E3840-7587-49C3-B73C-7FBD4ACC4BE9} = {378E3840-7587-49C3-B73C-7FBD4ACC4BE9}
- EndProjectSection
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SampleViewer3DJni", "SampleViewer3DJni.vcproj", "{78DD8C4E-E56E-4EE2-A810-F9F1E3E0B193}"
- ProjectSection(ProjectDependencies) = postProject
- {4318F255-7436-48BA-A686-372E4AAE972D} = {4318F255-7436-48BA-A686-372E4AAE972D}
- EndProjectSection
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SamplesTopologyJni", "SamplesTopologyJni.vcproj", "{502DF869-EFEC-4E18-BE1C-7CE7A507A947}"
- ProjectSection(ProjectDependencies) = postProject
- {78DD8C4E-E56E-4EE2-A810-F9F1E3E0B193} = {78DD8C4E-E56E-4EE2-A810-F9F1E3E0B193}
- EndProjectSection
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TKNativePaint", "TKNativePaint.vcproj", "{0D94D552-A08C-4158-AFD1-EEB7ADDE040A}"
- ProjectSection(ProjectDependencies) = postProject
- {703C819A-28AC-4AC4-A707-1DC9DC1A62CE} = {703C819A-28AC-4AC4-A707-1DC9DC1A62CE}
- EndProjectSection
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TKSamples", "TKSamples.vcproj", "{AB26C48F-40D5-49C6-8E4A-5965FCCEAAC2}"
- ProjectSection(ProjectDependencies) = postProject
- {0D94D552-A08C-4158-AFD1-EEB7ADDE040A} = {0D94D552-A08C-4158-AFD1-EEB7ADDE040A}
- EndProjectSection
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TKSamples2", "TKSamples2.vcproj", "{03037241-CE41-4D9C-B981-0DBC60B0686D}"
- ProjectSection(ProjectDependencies) = postProject
- {AB26C48F-40D5-49C6-8E4A-5965FCCEAAC2} = {AB26C48F-40D5-49C6-8E4A-5965FCCEAAC2}
- EndProjectSection
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TKjcas", "TKjcas.vcproj", "{703C819A-28AC-4AC4-A707-1DC9DC1A62CE}"
-EndProject
-Global
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug|Win32 = Debug|Win32
- Release|Win32 = Release|Win32
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {8DEBD578-2878-464F-9C01-892D53D494E2}.Debug|Win32.ActiveCfg = Debug|Win32
- {8DEBD578-2878-464F-9C01-892D53D494E2}.Debug|Win32.Build.0 = Debug|Win32
- {8DEBD578-2878-464F-9C01-892D53D494E2}.Release|Win32.ActiveCfg = Release|Win32
- {8DEBD578-2878-464F-9C01-892D53D494E2}.Release|Win32.Build.0 = Release|Win32
- {21AA79D9-F0A8-4A68-A4EA-9E623046DF08}.Debug|Win32.ActiveCfg = Debug|Win32
- {21AA79D9-F0A8-4A68-A4EA-9E623046DF08}.Debug|Win32.Build.0 = Debug|Win32
- {21AA79D9-F0A8-4A68-A4EA-9E623046DF08}.Release|Win32.ActiveCfg = Release|Win32
- {21AA79D9-F0A8-4A68-A4EA-9E623046DF08}.Release|Win32.Build.0 = Release|Win32
- {25614FA5-E94F-4E86-9FC1-97FD71790710}.Debug|Win32.ActiveCfg = Debug|Win32
- {25614FA5-E94F-4E86-9FC1-97FD71790710}.Debug|Win32.Build.0 = Debug|Win32
- {25614FA5-E94F-4E86-9FC1-97FD71790710}.Release|Win32.ActiveCfg = Release|Win32
- {25614FA5-E94F-4E86-9FC1-97FD71790710}.Release|Win32.Build.0 = Release|Win32
- {FDC347F7-D9A0-4D07-B223-CC2A3F1BEB9D}.Debug|Win32.ActiveCfg = Debug|Win32
- {FDC347F7-D9A0-4D07-B223-CC2A3F1BEB9D}.Debug|Win32.Build.0 = Debug|Win32
- {FDC347F7-D9A0-4D07-B223-CC2A3F1BEB9D}.Release|Win32.ActiveCfg = Release|Win32
- {FDC347F7-D9A0-4D07-B223-CC2A3F1BEB9D}.Release|Win32.Build.0 = Release|Win32
- {8A832152-5825-4FAB-A459-B360FC52BEEB}.Debug|Win32.ActiveCfg = Debug|Win32
- {8A832152-5825-4FAB-A459-B360FC52BEEB}.Debug|Win32.Build.0 = Debug|Win32
- {8A832152-5825-4FAB-A459-B360FC52BEEB}.Release|Win32.ActiveCfg = Release|Win32
- {8A832152-5825-4FAB-A459-B360FC52BEEB}.Release|Win32.Build.0 = Release|Win32
- {EADBD6B4-E6F5-405D-8AF3-496A6472D304}.Debug|Win32.ActiveCfg = Debug|Win32
- {EADBD6B4-E6F5-405D-8AF3-496A6472D304}.Debug|Win32.Build.0 = Debug|Win32
- {EADBD6B4-E6F5-405D-8AF3-496A6472D304}.Release|Win32.ActiveCfg = Release|Win32
- {EADBD6B4-E6F5-405D-8AF3-496A6472D304}.Release|Win32.Build.0 = Release|Win32
- {378E3840-7587-49C3-B73C-7FBD4ACC4BE9}.Debug|Win32.ActiveCfg = Debug|Win32
- {378E3840-7587-49C3-B73C-7FBD4ACC4BE9}.Debug|Win32.Build.0 = Debug|Win32
- {378E3840-7587-49C3-B73C-7FBD4ACC4BE9}.Release|Win32.ActiveCfg = Release|Win32
- {378E3840-7587-49C3-B73C-7FBD4ACC4BE9}.Release|Win32.Build.0 = Release|Win32
- {4318F255-7436-48BA-A686-372E4AAE972D}.Debug|Win32.ActiveCfg = Debug|Win32
- {4318F255-7436-48BA-A686-372E4AAE972D}.Debug|Win32.Build.0 = Debug|Win32
- {4318F255-7436-48BA-A686-372E4AAE972D}.Release|Win32.ActiveCfg = Release|Win32
- {4318F255-7436-48BA-A686-372E4AAE972D}.Release|Win32.Build.0 = Release|Win32
- {78DD8C4E-E56E-4EE2-A810-F9F1E3E0B193}.Debug|Win32.ActiveCfg = Debug|Win32
- {78DD8C4E-E56E-4EE2-A810-F9F1E3E0B193}.Debug|Win32.Build.0 = Debug|Win32
- {78DD8C4E-E56E-4EE2-A810-F9F1E3E0B193}.Release|Win32.ActiveCfg = Release|Win32
- {78DD8C4E-E56E-4EE2-A810-F9F1E3E0B193}.Release|Win32.Build.0 = Release|Win32
- {502DF869-EFEC-4E18-BE1C-7CE7A507A947}.Debug|Win32.ActiveCfg = Debug|Win32
- {502DF869-EFEC-4E18-BE1C-7CE7A507A947}.Debug|Win32.Build.0 = Debug|Win32
- {502DF869-EFEC-4E18-BE1C-7CE7A507A947}.Release|Win32.ActiveCfg = Release|Win32
- {502DF869-EFEC-4E18-BE1C-7CE7A507A947}.Release|Win32.Build.0 = Release|Win32
- {0D94D552-A08C-4158-AFD1-EEB7ADDE040A}.Debug|Win32.ActiveCfg = Debug|Win32
- {0D94D552-A08C-4158-AFD1-EEB7ADDE040A}.Debug|Win32.Build.0 = Debug|Win32
- {0D94D552-A08C-4158-AFD1-EEB7ADDE040A}.Release|Win32.ActiveCfg = Release|Win32
- {0D94D552-A08C-4158-AFD1-EEB7ADDE040A}.Release|Win32.Build.0 = Release|Win32
- {AB26C48F-40D5-49C6-8E4A-5965FCCEAAC2}.Debug|Win32.ActiveCfg = Debug|Win32
- {AB26C48F-40D5-49C6-8E4A-5965FCCEAAC2}.Debug|Win32.Build.0 = Debug|Win32
- {AB26C48F-40D5-49C6-8E4A-5965FCCEAAC2}.Release|Win32.ActiveCfg = Release|Win32
- {AB26C48F-40D5-49C6-8E4A-5965FCCEAAC2}.Release|Win32.Build.0 = Release|Win32
- {03037241-CE41-4D9C-B981-0DBC60B0686D}.Debug|Win32.ActiveCfg = Debug|Win32
- {03037241-CE41-4D9C-B981-0DBC60B0686D}.Debug|Win32.Build.0 = Debug|Win32
- {03037241-CE41-4D9C-B981-0DBC60B0686D}.Release|Win32.ActiveCfg = Release|Win32
- {03037241-CE41-4D9C-B981-0DBC60B0686D}.Release|Win32.Build.0 = Release|Win32
- {703C819A-28AC-4AC4-A707-1DC9DC1A62CE}.Debug|Win32.ActiveCfg = Debug|Win32
- {703C819A-28AC-4AC4-A707-1DC9DC1A62CE}.Debug|Win32.Build.0 = Debug|Win32
- {703C819A-28AC-4AC4-A707-1DC9DC1A62CE}.Release|Win32.ActiveCfg = Release|Win32
- {703C819A-28AC-4AC4-A707-1DC9DC1A62CE}.Release|Win32.Build.0 = Release|Win32
- EndGlobalSection
- GlobalSection(SolutionProperties) = preSolution
- HideSolutionNode = FALSE
- EndGlobalSection
-EndGlobal
diff --git a/samples/java/adm/win32/SampleAISBasicJni.vcproj b/samples/java/adm/win32/SampleAISBasicJni.vcproj
deleted file mode 100755
index b15bef69f5..0000000000
--- a/samples/java/adm/win32/SampleAISBasicJni.vcproj
+++ /dev/null
@@ -1,410 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/samples/java/adm/win32/SampleAISDisplayModeJni.vcproj b/samples/java/adm/win32/SampleAISDisplayModeJni.vcproj
deleted file mode 100755
index abc8bb115d..0000000000
--- a/samples/java/adm/win32/SampleAISDisplayModeJni.vcproj
+++ /dev/null
@@ -1,410 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/samples/java/adm/win32/SampleAISSelectJni.vcproj b/samples/java/adm/win32/SampleAISSelectJni.vcproj
deleted file mode 100755
index 49ed780303..0000000000
--- a/samples/java/adm/win32/SampleAISSelectJni.vcproj
+++ /dev/null
@@ -1,410 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/samples/java/adm/win32/SampleDisplayAnimationJni.vcproj b/samples/java/adm/win32/SampleDisplayAnimationJni.vcproj
deleted file mode 100755
index 474e829cd2..0000000000
--- a/samples/java/adm/win32/SampleDisplayAnimationJni.vcproj
+++ /dev/null
@@ -1,362 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/samples/java/adm/win32/SampleGeometryJni.vcproj b/samples/java/adm/win32/SampleGeometryJni.vcproj
deleted file mode 100755
index 7c81f735ab..0000000000
--- a/samples/java/adm/win32/SampleGeometryJni.vcproj
+++ /dev/null
@@ -1,458 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/samples/java/adm/win32/SampleHLRJni.vcproj b/samples/java/adm/win32/SampleHLRJni.vcproj
deleted file mode 100755
index 69482c9131..0000000000
--- a/samples/java/adm/win32/SampleHLRJni.vcproj
+++ /dev/null
@@ -1,1178 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/samples/java/adm/win32/SampleImportExportJni.vcproj b/samples/java/adm/win32/SampleImportExportJni.vcproj
deleted file mode 100755
index ebf90b2f00..0000000000
--- a/samples/java/adm/win32/SampleImportExportJni.vcproj
+++ /dev/null
@@ -1,386 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/samples/java/adm/win32/SampleViewer3DJni.vcproj b/samples/java/adm/win32/SampleViewer3DJni.vcproj
deleted file mode 100755
index 4dcce42dfe..0000000000
--- a/samples/java/adm/win32/SampleViewer3DJni.vcproj
+++ /dev/null
@@ -1,938 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/samples/java/adm/win32/SamplesTopologyJni.vcproj b/samples/java/adm/win32/SamplesTopologyJni.vcproj
deleted file mode 100755
index 1bb12a396d..0000000000
--- a/samples/java/adm/win32/SamplesTopologyJni.vcproj
+++ /dev/null
@@ -1,386 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/samples/java/adm/win32/TKNativePaint.vcproj b/samples/java/adm/win32/TKNativePaint.vcproj
deleted file mode 100755
index 05074d5475..0000000000
--- a/samples/java/adm/win32/TKNativePaint.vcproj
+++ /dev/null
@@ -1,266 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/samples/java/adm/win32/TKSamples.vcproj b/samples/java/adm/win32/TKSamples.vcproj
deleted file mode 100755
index 67679ffa15..0000000000
--- a/samples/java/adm/win32/TKSamples.vcproj
+++ /dev/null
@@ -1,674 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/samples/java/adm/win32/TKSamples2.vcproj b/samples/java/adm/win32/TKSamples2.vcproj
deleted file mode 100755
index fb5ba762e1..0000000000
--- a/samples/java/adm/win32/TKSamples2.vcproj
+++ /dev/null
@@ -1,242 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/samples/java/adm/win32/TKjcas.vcproj b/samples/java/adm/win32/TKjcas.vcproj
deleted file mode 100755
index f0288cd2e7..0000000000
--- a/samples/java/adm/win32/TKjcas.vcproj
+++ /dev/null
@@ -1,288 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/samples/java/build.bat b/samples/java/build.bat
deleted file mode 100755
index 9077c0da80..0000000000
--- a/samples/java/build.bat
+++ /dev/null
@@ -1,29 +0,0 @@
-@ECHO OFF
-
-call %~dp0..\..\ros\env_build.bat vc8 win32
-
-IF NOT EXIST win32 mkdir win32
-cd win32
-IF NOT EXIST vc8 mkdir vc8
-cd vc8
-
-SET ROOT=%CASROOT%\..
-SET SAMPLEHOME=%ROOT%\samples\java
-
-IF NOT EXIST obj mkdir obj
-IF NOT EXIST classes mkdir classes
-
-del CASCADESamples.jar
-
-%JAVAHOME%\bin\javac -d classes %CASROOT%\src\jcas\*.java %SAMPLEHOME%\java\CASCADESamplesJni\*.java %SAMPLEHOME%\java\SampleGeometryJni\*.java %SAMPLEHOME%\java\SamplesTopologyJni\*.java %SAMPLEHOME%\java\SampleViewer3DJni\*.java %SAMPLEHOME%\java\SampleAISBasicJni\*.java %SAMPLEHOME%\java\SampleAISDisplayModeJni\*.java %SAMPLEHOME%\java\SampleAISSelectJni\*.java %SAMPLEHOME%\java\SampleDisplayAnimationJni\*.java %SAMPLEHOME%\java\SampleImportExportJni\*.java %SAMPLEHOME%\java\SampleHLRJni\*.java %SAMPLEHOME%\java\util\*.java %SAMPLEHOME%\java\*.java
-
-
-cd classes
-%JAVAHOME%\bin\jar -cf CASCADESamples.jar -C . jcas\*.class CASCADESamplesJni\*.class SampleGeometryJni\*.class SamplesTopologyJni\*.class SampleViewer3DJni\*.class SampleAISBasicJni\*.class SampleAISDisplayModeJni\*.class SampleAISSelectJni\*.class SampleDisplayAnimationJni\*.class SampleImportExportJni\*.class SampleHLRJni\*.class util\*.class *.class
-copy CASCADESamples.jar %SAMPLEHOME%\win32
-
-cd ..
-del /q /s /f classes\*
-rmdir /q /s classes
-
-cd ..
diff --git a/samples/java/build.csh b/samples/java/build.csh
deleted file mode 100755
index 1cddbf7107..0000000000
--- a/samples/java/build.csh
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/bin/csh -f
-
-setenv STATION `uname -s`
-if (${STATION} == "IRIX64") setenv STATION IRIX
-
-setenv SAMPLE_ROOT `pwd`
-
-cd $STATION
-
-if ( ! -d obj ) then
- mkdir obj
-endif
-
-if ( ! -d classes ) then
- mkdir classes
-endif
-if ( !($?JAVAHOME) ) then
- echo -n "JAVAHOME not setted . Please define it : "
- set res = $<
- setenv JAVAHOME ${res}
-else
- setenv JDK ${JAVAHOME}
-endif
-
-${JAVAHOME}/bin/javac -d classes ${CASROOT}/src/jcas/*.java ${SAMPLE_ROOT}/java/CASCADESamplesJni/*.java ${SAMPLE_ROOT}/java/SampleGeometryJni/*.java ${SAMPLE_ROOT}/java/SamplesTopologyJni/*.java ${SAMPLE_ROOT}/java/SampleViewer3DJni/*.java ${SAMPLE_ROOT}/java/SampleAISBasicJni/*.java ${SAMPLE_ROOT}/java/SampleAISDisplayModeJni/*.java ${SAMPLE_ROOT}/java/SampleAISSelectJni/*.java ${SAMPLE_ROOT}/java/SampleDisplayAnimationJni/*.java ${SAMPLE_ROOT}/java/SampleImportExportJni/*.java ${SAMPLE_ROOT}/java/SampleHLRJni/*.java ${SAMPLE_ROOT}/java/util/*.java ${SAMPLE_ROOT}/java/util/x11/*.java ${SAMPLE_ROOT}/java/*.java
-
-${JAVAHOME}/bin/jar -cf CASCADESamples.jar -C classes/ .
-
-rm -R classes
diff --git a/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_AIS_Drawer_java.cxx b/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_AIS_Drawer_java.cxx
deleted file mode 100755
index 4db324b022..0000000000
--- a/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_AIS_Drawer_java.cxx
+++ /dev/null
@@ -1,33 +0,0 @@
-//
-// Copyright (C) 1991 - 2000 by
-// Matra Datavision SA. All rights reserved.
-//
-// Copyright (C) 2001 - 2004 by
-// Open CASCADE SA. All rights reserved.
-//
-// This file is part of the Open CASCADE Technology software.
-//
-// This software may be distributed and/or modified under the terms and
-// conditions of the Open CASCADE Public License as defined by Open CASCADE SA
-// and appearing in the file LICENSE included in the packaging of this file.
-//
-// This software is distributed on an "AS IS" basis, without warranty of any
-// kind, and Open CASCADE SA hereby disclaims all such warranties,
-// including without limitation, any warranties of merchantability, fitness
-// for a particular purpose or non-infringement. Please see the License for
-// the specific terms and conditions governing rights and limitations under the
-// License.
-
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-
-
-
-extern "C" {
-
-}
diff --git a/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_AIS_InteractiveContext_java.cxx b/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_AIS_InteractiveContext_java.cxx
deleted file mode 100755
index 9b2ad92dfe..0000000000
--- a/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_AIS_InteractiveContext_java.cxx
+++ /dev/null
@@ -1,6369 +0,0 @@
-//
-// Copyright (C) 1991 - 2000 by
-// Matra Datavision SA. All rights reserved.
-//
-// Copyright (C) 2001 - 2004 by
-// Open CASCADE SA. All rights reserved.
-//
-// This file is part of the Open CASCADE Technology software.
-//
-// This software may be distributed and/or modified under the terms and
-// conditions of the Open CASCADE Public License as defined by Open CASCADE SA
-// and appearing in the file LICENSE included in the packaging of this file.
-//
-// This software is distributed on an "AS IS" basis, without warranty of any
-// kind, and Open CASCADE SA hereby disclaims all such warranties,
-// including without limitation, any warranties of merchantability, fitness
-// for a particular purpose or non-infringement. Please see the License for
-// the specific terms and conditions governing rights and limitations under the
-// License.
-
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-
-
-extern "C" {
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1Create_11 (JNIEnv *env, jobject theobj, jobject MainViewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( V3d_Viewer ) the_MainViewer;
- void* ptr_MainViewer = jcas_GetHandle(env,MainViewer);
-
- if ( ptr_MainViewer != NULL ) the_MainViewer = *( ( Handle( V3d_Viewer )* )ptr_MainViewer );
-
-Handle(AIS_InteractiveContext)* theret = new Handle(AIS_InteractiveContext);
-*theret = new AIS_InteractiveContext(the_MainViewer);
-jcas_SetHandle(env,theobj,theret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1Create_12 (JNIEnv *env, jobject theobj, jobject MainViewer, jobject Collector)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( V3d_Viewer ) the_MainViewer;
- void* ptr_MainViewer = jcas_GetHandle(env,MainViewer);
-
- if ( ptr_MainViewer != NULL ) the_MainViewer = *( ( Handle( V3d_Viewer )* )ptr_MainViewer );
-
- Handle( V3d_Viewer ) the_Collector;
- void* ptr_Collector = jcas_GetHandle(env,Collector);
-
- if ( ptr_Collector != NULL ) the_Collector = *( ( Handle( V3d_Viewer )* )ptr_Collector );
-
-Handle(AIS_InteractiveContext)* theret = new Handle(AIS_InteractiveContext);
-*theret = new AIS_InteractiveContext(the_MainViewer,the_Collector);
-jcas_SetHandle(env,theobj,theret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_Delete (JNIEnv *env, jobject theobj)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->Delete();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_IsCollectorClosed (JNIEnv *env, jobject theobj)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->IsCollectorClosed();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_CloseCollector (JNIEnv *env, jobject theobj)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->CloseCollector();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_OpenCollector (JNIEnv *env, jobject theobj)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->OpenCollector();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_SetAutoActivateSelection (JNIEnv *env, jobject theobj, jboolean Auto)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->SetAutoActivateSelection((Standard_Boolean) Auto);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_GetAutoActivateSelection (JNIEnv *env, jobject theobj)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->GetAutoActivateSelection();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1Display_11 (JNIEnv *env, jobject theobj, jobject anIobj, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_anIobj;
- void* ptr_anIobj = jcas_GetHandle(env,anIobj);
-
- if ( ptr_anIobj != NULL ) the_anIobj = *( ( Handle( AIS_InteractiveObject )* )ptr_anIobj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->Display(the_anIobj,(Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1Display_12 (JNIEnv *env, jobject theobj, jobject anIobj, jint amode, jint aSelectionMode, jboolean updateviewer, jboolean allowdecomposition)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_anIobj;
- void* ptr_anIobj = jcas_GetHandle(env,anIobj);
-
- if ( ptr_anIobj != NULL ) the_anIobj = *( ( Handle( AIS_InteractiveObject )* )ptr_anIobj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->Display(the_anIobj,(Standard_Integer) amode,(Standard_Integer) aSelectionMode,(Standard_Boolean) updateviewer,(Standard_Boolean) allowdecomposition);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_Load (JNIEnv *env, jobject theobj, jobject aniobj, jint SelectionMode, jboolean AllowDecomp)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_aniobj;
- void* ptr_aniobj = jcas_GetHandle(env,aniobj);
-
- if ( ptr_aniobj != NULL ) the_aniobj = *( ( Handle( AIS_InteractiveObject )* )ptr_aniobj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->Load(the_aniobj,(Standard_Integer) SelectionMode,(Standard_Boolean) AllowDecomp);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_Erase (JNIEnv *env, jobject theobj, jobject aniobj, jboolean updateviewer, jboolean PutInCollector)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_aniobj;
- void* ptr_aniobj = jcas_GetHandle(env,aniobj);
-
- if ( ptr_aniobj != NULL ) the_aniobj = *( ( Handle( AIS_InteractiveObject )* )ptr_aniobj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->Erase(the_aniobj,(Standard_Boolean) updateviewer,(Standard_Boolean) PutInCollector);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_EraseMode (JNIEnv *env, jobject theobj, jobject aniobj, jint aMode, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_aniobj;
- void* ptr_aniobj = jcas_GetHandle(env,aniobj);
-
- if ( ptr_aniobj != NULL ) the_aniobj = *( ( Handle( AIS_InteractiveObject )* )ptr_aniobj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->EraseMode(the_aniobj,(Standard_Integer) aMode,(Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_EraseAll (JNIEnv *env, jobject theobj, jboolean PutInCollector, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->EraseAll((Standard_Boolean) PutInCollector,(Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_DisplayAll (JNIEnv *env, jobject theobj, jboolean OnlyFromCollector, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->DisplayAll((Standard_Boolean) OnlyFromCollector,(Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_DisplayFromCollector (JNIEnv *env, jobject theobj, jobject anIObj, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_anIObj;
- void* ptr_anIObj = jcas_GetHandle(env,anIObj);
-
- if ( ptr_anIObj != NULL ) the_anIObj = *( ( Handle( AIS_InteractiveObject )* )ptr_anIObj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->DisplayFromCollector(the_anIObj,(Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_EraseSelected (JNIEnv *env, jobject theobj, jboolean PutInCollector, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->EraseSelected((Standard_Boolean) PutInCollector,(Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_DisplaySelected (JNIEnv *env, jobject theobj, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->DisplaySelected((Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_KeepTemporary (JNIEnv *env, jobject theobj, jobject anIObj, jint InWhichLocal)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_anIObj;
- void* ptr_anIObj = jcas_GetHandle(env,anIObj);
-
- if ( ptr_anIObj != NULL ) the_anIObj = *( ( Handle( AIS_InteractiveObject )* )ptr_anIObj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->KeepTemporary(the_anIObj,(Standard_Integer) InWhichLocal);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_Clear (JNIEnv *env, jobject theobj, jobject aniobj, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_aniobj;
- void* ptr_aniobj = jcas_GetHandle(env,aniobj);
-
- if ( ptr_aniobj != NULL ) the_aniobj = *( ( Handle( AIS_InteractiveObject )* )ptr_aniobj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->Clear(the_aniobj,(Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_ClearPrs (JNIEnv *env, jobject theobj, jobject aniobj, jint aMode, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_aniobj;
- void* ptr_aniobj = jcas_GetHandle(env,aniobj);
-
- if ( ptr_aniobj != NULL ) the_aniobj = *( ( Handle( AIS_InteractiveObject )* )ptr_aniobj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->ClearPrs(the_aniobj,(Standard_Integer) aMode,(Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_Remove (JNIEnv *env, jobject theobj, jobject aniobj, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_aniobj;
- void* ptr_aniobj = jcas_GetHandle(env,aniobj);
-
- if ( ptr_aniobj != NULL ) the_aniobj = *( ( Handle( AIS_InteractiveObject )* )ptr_aniobj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->Remove(the_aniobj,(Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_RemoveAll (JNIEnv *env, jobject theobj, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->RemoveAll((Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_Hilight (JNIEnv *env, jobject theobj, jobject aniobj, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_aniobj;
- void* ptr_aniobj = jcas_GetHandle(env,aniobj);
-
- if ( ptr_aniobj != NULL ) the_aniobj = *( ( Handle( AIS_InteractiveObject )* )ptr_aniobj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->Hilight(the_aniobj,(Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_HilightWithColor (JNIEnv *env, jobject theobj, jobject aniobj, jshort aCol, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_aniobj;
- void* ptr_aniobj = jcas_GetHandle(env,aniobj);
-
- if ( ptr_aniobj != NULL ) the_aniobj = *( ( Handle( AIS_InteractiveObject )* )ptr_aniobj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->HilightWithColor(the_aniobj,(Quantity_NameOfColor) aCol,(Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_Unhilight (JNIEnv *env, jobject theobj, jobject aniobj, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_aniobj;
- void* ptr_aniobj = jcas_GetHandle(env,aniobj);
-
- if ( ptr_aniobj != NULL ) the_aniobj = *( ( Handle( AIS_InteractiveObject )* )ptr_aniobj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->Unhilight(the_aniobj,(Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_SetDisplayPriority (JNIEnv *env, jobject theobj, jobject anIobj, jint aPriority)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_anIobj;
- void* ptr_anIobj = jcas_GetHandle(env,anIobj);
-
- if ( ptr_anIobj != NULL ) the_anIobj = *( ( Handle( AIS_InteractiveObject )* )ptr_anIobj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->SetDisplayPriority(the_anIobj,(Standard_Integer) aPriority);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1Redisplay_11 (JNIEnv *env, jobject theobj, jobject aniobj, jboolean updateviewer, jboolean allmodes)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_aniobj;
- void* ptr_aniobj = jcas_GetHandle(env,aniobj);
-
- if ( ptr_aniobj != NULL ) the_aniobj = *( ( Handle( AIS_InteractiveObject )* )ptr_aniobj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->Redisplay(the_aniobj,(Standard_Boolean) updateviewer,(Standard_Boolean) allmodes);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1Redisplay_12 (JNIEnv *env, jobject theobj, jshort aTypeOfObject, jint Signature, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->Redisplay((AIS_KindOfInteractive) aTypeOfObject,(Standard_Integer) Signature,(Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_RecomputePrsOnly (JNIEnv *env, jobject theobj, jobject anIobj, jboolean updateviewer, jboolean allmodes)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_anIobj;
- void* ptr_anIobj = jcas_GetHandle(env,anIobj);
-
- if ( ptr_anIobj != NULL ) the_anIobj = *( ( Handle( AIS_InteractiveObject )* )ptr_anIobj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->RecomputePrsOnly(the_anIobj,(Standard_Boolean) updateviewer,(Standard_Boolean) allmodes);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_RecomputeSelectionOnly (JNIEnv *env, jobject theobj, jobject anIObj)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_anIObj;
- void* ptr_anIObj = jcas_GetHandle(env,anIObj);
-
- if ( ptr_anIObj != NULL ) the_anIObj = *( ( Handle( AIS_InteractiveObject )* )ptr_anIObj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->RecomputeSelectionOnly(the_anIObj);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_Update (JNIEnv *env, jobject theobj, jobject anIobj, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_anIobj;
- void* ptr_anIobj = jcas_GetHandle(env,anIobj);
-
- if ( ptr_anIobj != NULL ) the_anIobj = *( ( Handle( AIS_InteractiveObject )* )ptr_anIobj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->Update(the_anIobj,(Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1SetDisplayMode_11 (JNIEnv *env, jobject theobj, jobject aniobj, jint aMode, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_aniobj;
- void* ptr_aniobj = jcas_GetHandle(env,aniobj);
-
- if ( ptr_aniobj != NULL ) the_aniobj = *( ( Handle( AIS_InteractiveObject )* )ptr_aniobj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->SetDisplayMode(the_aniobj,(Standard_Integer) aMode,(Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_UnsetDisplayMode (JNIEnv *env, jobject theobj, jobject aniobj, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_aniobj;
- void* ptr_aniobj = jcas_GetHandle(env,aniobj);
-
- if ( ptr_aniobj != NULL ) the_aniobj = *( ( Handle( AIS_InteractiveObject )* )ptr_aniobj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->UnsetDisplayMode(the_aniobj,(Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_SetSelectionMode (JNIEnv *env, jobject theobj, jobject aniobj, jint aMode)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_aniobj;
- void* ptr_aniobj = jcas_GetHandle(env,aniobj);
-
- if ( ptr_aniobj != NULL ) the_aniobj = *( ( Handle( AIS_InteractiveObject )* )ptr_aniobj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->SetSelectionMode(the_aniobj,(Standard_Integer) aMode);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_UnsetSelectionMode (JNIEnv *env, jobject theobj, jobject aniobj)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_aniobj;
- void* ptr_aniobj = jcas_GetHandle(env,aniobj);
-
- if ( ptr_aniobj != NULL ) the_aniobj = *( ( Handle( AIS_InteractiveObject )* )ptr_aniobj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->UnsetSelectionMode(the_aniobj);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1SetSensitivity_11 (JNIEnv *env, jobject theobj, jdouble aPrecision)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->SetSensitivity((Standard_Real) aPrecision);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1SetSensitivity_12 (JNIEnv *env, jobject theobj, jint aPrecision)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->SetSensitivity((Standard_Integer) aPrecision);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_SetLocation (JNIEnv *env, jobject theobj, jobject aniobj, jobject aLocation)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_aniobj;
- void* ptr_aniobj = jcas_GetHandle(env,aniobj);
-
- if ( ptr_aniobj != NULL ) the_aniobj = *( ( Handle( AIS_InteractiveObject )* )ptr_aniobj );
-
-TopLoc_Location* the_aLocation = (TopLoc_Location*) jcas_GetHandle(env,aLocation);
-if ( the_aLocation == NULL ) {
-
- // The following assumes availability of the default constructor (what may not
- // always be the case). Therefore explicit exception is thrown if the null
- // object has been passed.
- // the_aLocation = new TopLoc_Location ();
- // jcas_SetHandle ( env, aLocation, the_aLocation );
- jcas_ThrowException (env, "NULL object has been passed while expecting an object manipulated by value");
-
-} // end if
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->SetLocation(the_aniobj,*the_aLocation);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_ResetLocation (JNIEnv *env, jobject theobj, jobject aniobj)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_aniobj;
- void* ptr_aniobj = jcas_GetHandle(env,aniobj);
-
- if ( ptr_aniobj != NULL ) the_aniobj = *( ( Handle( AIS_InteractiveObject )* )ptr_aniobj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->ResetLocation(the_aniobj);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_HasLocation (JNIEnv *env, jobject theobj, jobject aniobj)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_aniobj;
- void* ptr_aniobj = jcas_GetHandle(env,aniobj);
-
- if ( ptr_aniobj != NULL ) the_aniobj = *( ( Handle( AIS_InteractiveObject )* )ptr_aniobj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->HasLocation(the_aniobj);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_Location (JNIEnv *env, jobject theobj, jobject aniobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_aniobj;
- void* ptr_aniobj = jcas_GetHandle(env,aniobj);
-
- if ( ptr_aniobj != NULL ) the_aniobj = *( ( Handle( AIS_InteractiveObject )* )ptr_aniobj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-const TopLoc_Location& theret = the_this->Location(the_aniobj);
-thejret = jcas_CreateObject(env,"CASCADESamplesJni/TopLoc_Location",&theret,0);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_SetCurrentFacingModel (JNIEnv *env, jobject theobj, jobject aniobj, jshort aModel)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_aniobj;
- void* ptr_aniobj = jcas_GetHandle(env,aniobj);
-
- if ( ptr_aniobj != NULL ) the_aniobj = *( ( Handle( AIS_InteractiveObject )* )ptr_aniobj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->SetCurrentFacingModel(the_aniobj,(Aspect_TypeOfFacingModel) aModel);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1SetColor_11 (JNIEnv *env, jobject theobj, jobject aniobj, jshort aColor, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_aniobj;
- void* ptr_aniobj = jcas_GetHandle(env,aniobj);
-
- if ( ptr_aniobj != NULL ) the_aniobj = *( ( Handle( AIS_InteractiveObject )* )ptr_aniobj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->SetColor(the_aniobj,(Quantity_NameOfColor) aColor,(Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1SetColor_12 (JNIEnv *env, jobject theobj, jobject aniobj, jobject aColor, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_aniobj;
- void* ptr_aniobj = jcas_GetHandle(env,aniobj);
-
- if ( ptr_aniobj != NULL ) the_aniobj = *( ( Handle( AIS_InteractiveObject )* )ptr_aniobj );
-
-Quantity_Color* the_aColor = (Quantity_Color*) jcas_GetHandle(env,aColor);
-if ( the_aColor == NULL ) {
-
- // The following assumes availability of the default constructor (what may not
- // always be the case). Therefore explicit exception is thrown if the null
- // object has been passed.
- // the_aColor = new Quantity_Color ();
- // jcas_SetHandle ( env, aColor, the_aColor );
- jcas_ThrowException (env, "NULL object has been passed while expecting an object manipulated by value");
-
-} // end if
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->SetColor(the_aniobj,*the_aColor,(Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_UnsetColor (JNIEnv *env, jobject theobj, jobject aniobj, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_aniobj;
- void* ptr_aniobj = jcas_GetHandle(env,aniobj);
-
- if ( ptr_aniobj != NULL ) the_aniobj = *( ( Handle( AIS_InteractiveObject )* )ptr_aniobj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->UnsetColor(the_aniobj,(Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_SetWidth (JNIEnv *env, jobject theobj, jobject aniobj, jdouble aValue, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_aniobj;
- void* ptr_aniobj = jcas_GetHandle(env,aniobj);
-
- if ( ptr_aniobj != NULL ) the_aniobj = *( ( Handle( AIS_InteractiveObject )* )ptr_aniobj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->SetWidth(the_aniobj,(Standard_Real) aValue,(Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_UnsetWidth (JNIEnv *env, jobject theobj, jobject aniobj, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_aniobj;
- void* ptr_aniobj = jcas_GetHandle(env,aniobj);
-
- if ( ptr_aniobj != NULL ) the_aniobj = *( ( Handle( AIS_InteractiveObject )* )ptr_aniobj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->UnsetWidth(the_aniobj,(Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_SetMaterial (JNIEnv *env, jobject theobj, jobject aniobj, jshort aName, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_aniobj;
- void* ptr_aniobj = jcas_GetHandle(env,aniobj);
-
- if ( ptr_aniobj != NULL ) the_aniobj = *( ( Handle( AIS_InteractiveObject )* )ptr_aniobj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->SetMaterial(the_aniobj,(Graphic3d_NameOfMaterial) aName,(Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_UnsetMaterial (JNIEnv *env, jobject theobj, jobject anObj, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_anObj;
- void* ptr_anObj = jcas_GetHandle(env,anObj);
-
- if ( ptr_anObj != NULL ) the_anObj = *( ( Handle( AIS_InteractiveObject )* )ptr_anObj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->UnsetMaterial(the_anObj,(Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_SetTransparency (JNIEnv *env, jobject theobj, jobject aniobj, jdouble aValue, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_aniobj;
- void* ptr_aniobj = jcas_GetHandle(env,aniobj);
-
- if ( ptr_aniobj != NULL ) the_aniobj = *( ( Handle( AIS_InteractiveObject )* )ptr_aniobj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->SetTransparency(the_aniobj,(Standard_Real) aValue,(Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_UnsetTransparency (JNIEnv *env, jobject theobj, jobject aniobj, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_aniobj;
- void* ptr_aniobj = jcas_GetHandle(env,aniobj);
-
- if ( ptr_aniobj != NULL ) the_aniobj = *( ( Handle( AIS_InteractiveObject )* )ptr_aniobj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->UnsetTransparency(the_aniobj,(Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1SetDegenerateModel_11 (JNIEnv *env, jobject theobj, jobject aniobj, jshort aModel, jdouble aRatio)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_aniobj;
- void* ptr_aniobj = jcas_GetHandle(env,aniobj);
-
- if ( ptr_aniobj != NULL ) the_aniobj = *( ( Handle( AIS_InteractiveObject )* )ptr_aniobj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->SetDegenerateModel(the_aniobj,(Aspect_TypeOfDegenerateModel) aModel,(Quantity_Ratio) aRatio);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1SetDegenerateModel_12 (JNIEnv *env, jobject theobj, jshort aModel, jdouble aSkipRatio)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->SetDegenerateModel((Aspect_TypeOfDegenerateModel) aModel,(Quantity_Ratio) aSkipRatio);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_SetLocalAttributes (JNIEnv *env, jobject theobj, jobject aniobj, jobject aDrawer, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_aniobj;
- void* ptr_aniobj = jcas_GetHandle(env,aniobj);
-
- if ( ptr_aniobj != NULL ) the_aniobj = *( ( Handle( AIS_InteractiveObject )* )ptr_aniobj );
-
- Handle( AIS_Drawer ) the_aDrawer;
- void* ptr_aDrawer = jcas_GetHandle(env,aDrawer);
-
- if ( ptr_aDrawer != NULL ) the_aDrawer = *( ( Handle( AIS_Drawer )* )ptr_aDrawer );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->SetLocalAttributes(the_aniobj,the_aDrawer,(Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_UnsetLocalAttributes (JNIEnv *env, jobject theobj, jobject anObj, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_anObj;
- void* ptr_anObj = jcas_GetHandle(env,anObj);
-
- if ( ptr_anObj != NULL ) the_anObj = *( ( Handle( AIS_InteractiveObject )* )ptr_anObj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->UnsetLocalAttributes(the_anObj,(Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_SetPolygonOffsets (JNIEnv *env, jobject theobj, jobject anObj, jint aMode, jdouble aFactor, jdouble aUnits, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_anObj;
- void* ptr_anObj = jcas_GetHandle(env,anObj);
-
- if ( ptr_anObj != NULL ) the_anObj = *( ( Handle( AIS_InteractiveObject )* )ptr_anObj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->SetPolygonOffsets(the_anObj,(Standard_Integer) aMode,(Standard_Real) aFactor,(Standard_Real) aUnits,(Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_HasPolygonOffsets (JNIEnv *env, jobject theobj, jobject anObj)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_anObj;
- void* ptr_anObj = jcas_GetHandle(env,anObj);
-
- if ( ptr_anObj != NULL ) the_anObj = *( ( Handle( AIS_InteractiveObject )* )ptr_anObj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->HasPolygonOffsets(the_anObj);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_PolygonOffsets (JNIEnv *env, jobject theobj, jobject anObj, jobject aMode, jobject aFactor, jobject aUnits)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_anObj;
- void* ptr_anObj = jcas_GetHandle(env,anObj);
-
- if ( ptr_anObj != NULL ) the_anObj = *( ( Handle( AIS_InteractiveObject )* )ptr_anObj );
-
-Standard_Integer the_aMode = jcas_GetInteger(env,aMode);
-Standard_Real the_aFactor = jcas_GetReal(env,aFactor);
-Standard_Real the_aUnits = jcas_GetReal(env,aUnits);
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->PolygonOffsets(the_anObj,the_aMode,the_aFactor,the_aUnits);
-jcas_SetInteger(env,aMode,the_aMode);
-jcas_SetReal(env,aFactor,the_aFactor);
-jcas_SetReal(env,aUnits,the_aUnits);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_SetTrihedronSize (JNIEnv *env, jobject theobj, jdouble aSize, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->SetTrihedronSize((Standard_Real) aSize,(Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jdouble JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_TrihedronSize (JNIEnv *env, jobject theobj)
-{
-jdouble thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->TrihedronSize();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1SetPlaneSize_11 (JNIEnv *env, jobject theobj, jdouble aSizeX, jdouble aSizeY, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->SetPlaneSize((Standard_Real) aSizeX,(Standard_Real) aSizeY,(Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1SetPlaneSize_12 (JNIEnv *env, jobject theobj, jdouble aSize, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->SetPlaneSize((Standard_Real) aSize,(Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_PlaneSize (JNIEnv *env, jobject theobj, jobject XSize, jobject YSize)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Standard_Real the_XSize = jcas_GetReal(env,XSize);
-Standard_Real the_YSize = jcas_GetReal(env,YSize);
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->PlaneSize(the_XSize,the_YSize);
-jcas_SetReal(env,XSize,the_XSize);
-jcas_SetReal(env,YSize,the_YSize);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jshort JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_DisplayStatus (JNIEnv *env, jobject theobj, jobject anIobj)
-{
-jshort thejret;
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_anIobj;
- void* ptr_anIobj = jcas_GetHandle(env,anIobj);
-
- if ( ptr_anIobj != NULL ) the_anIobj = *( ( Handle( AIS_InteractiveObject )* )ptr_anIobj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->DisplayStatus(the_anIobj);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_DisplayedModes (JNIEnv *env, jobject theobj, jobject aniobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_aniobj;
- void* ptr_aniobj = jcas_GetHandle(env,aniobj);
-
- if ( ptr_aniobj != NULL ) the_aniobj = *( ( Handle( AIS_InteractiveObject )* )ptr_aniobj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-const TColStd_ListOfInteger& theret = the_this->DisplayedModes(the_aniobj);
-thejret = jcas_CreateObject(env,"CASCADESamplesJni/TColStd_ListOfInteger",&theret,0);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1IsDisplayed_11 (JNIEnv *env, jobject theobj, jobject anIobj)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_anIobj;
- void* ptr_anIobj = jcas_GetHandle(env,anIobj);
-
- if ( ptr_anIobj != NULL ) the_anIobj = *( ( Handle( AIS_InteractiveObject )* )ptr_anIobj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->IsDisplayed(the_anIobj);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1IsDisplayed_12 (JNIEnv *env, jobject theobj, jobject aniobj, jint aMode)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_aniobj;
- void* ptr_aniobj = jcas_GetHandle(env,aniobj);
-
- if ( ptr_aniobj != NULL ) the_aniobj = *( ( Handle( AIS_InteractiveObject )* )ptr_aniobj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->IsDisplayed(the_aniobj,(Standard_Integer) aMode);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1IsHilighted_11 (JNIEnv *env, jobject theobj, jobject aniobj)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_aniobj;
- void* ptr_aniobj = jcas_GetHandle(env,aniobj);
-
- if ( ptr_aniobj != NULL ) the_aniobj = *( ( Handle( AIS_InteractiveObject )* )ptr_aniobj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->IsHilighted(the_aniobj);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1IsHilighted_12 (JNIEnv *env, jobject theobj, jobject anIobj, jobject WithColor, jobject theHiCol)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_anIobj;
- void* ptr_anIobj = jcas_GetHandle(env,anIobj);
-
- if ( ptr_anIobj != NULL ) the_anIobj = *( ( Handle( AIS_InteractiveObject )* )ptr_anIobj );
-
-Standard_Boolean the_WithColor = jcas_GetBoolean(env,WithColor);
-Quantity_NameOfColor the_theHiCol = ( Quantity_NameOfColor )jcas_GetShort ( env, theHiCol );
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->IsHilighted(the_anIobj,the_WithColor,the_theHiCol);
-jcas_SetBoolean(env,WithColor,the_WithColor);
-jcas_SetShort(env,theHiCol,the_theHiCol);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_IsInCollector (JNIEnv *env, jobject theobj, jobject anIObj)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_anIObj;
- void* ptr_anIObj = jcas_GetHandle(env,anIObj);
-
- if ( ptr_anIObj != NULL ) the_anIObj = *( ( Handle( AIS_InteractiveObject )* )ptr_anIObj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->IsInCollector(the_anIObj);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jint JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_DisplayPriority (JNIEnv *env, jobject theobj, jobject anIobj)
-{
-jint thejret;
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_anIobj;
- void* ptr_anIobj = jcas_GetHandle(env,anIobj);
-
- if ( ptr_anIobj != NULL ) the_anIobj = *( ( Handle( AIS_InteractiveObject )* )ptr_anIobj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->DisplayPriority(the_anIobj);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_HasColor (JNIEnv *env, jobject theobj, jobject aniobj)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_aniobj;
- void* ptr_aniobj = jcas_GetHandle(env,aniobj);
-
- if ( ptr_aniobj != NULL ) the_aniobj = *( ( Handle( AIS_InteractiveObject )* )ptr_aniobj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->HasColor(the_aniobj);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jshort JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1Color_11 (JNIEnv *env, jobject theobj, jobject aniobj)
-{
-jshort thejret;
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_aniobj;
- void* ptr_aniobj = jcas_GetHandle(env,aniobj);
-
- if ( ptr_aniobj != NULL ) the_aniobj = *( ( Handle( AIS_InteractiveObject )* )ptr_aniobj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->Color(the_aniobj);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1Color_12 (JNIEnv *env, jobject theobj, jobject aniobj, jobject acolor)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_aniobj;
- void* ptr_aniobj = jcas_GetHandle(env,aniobj);
-
- if ( ptr_aniobj != NULL ) the_aniobj = *( ( Handle( AIS_InteractiveObject )* )ptr_aniobj );
-
-Quantity_Color* the_acolor = (Quantity_Color*) jcas_GetHandle(env,acolor);
-if ( the_acolor == NULL ) {
-
- // The following assumes availability of the default constructor (what may not
- // always be the case). Therefore explicit exception is thrown if the null
- // object has been passed.
- // the_acolor = new Quantity_Color ();
- // jcas_SetHandle ( env, acolor, the_acolor );
- jcas_ThrowException (env, "NULL object has been passed while expecting an object manipulated by value");
-
-} // end if
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->Color(the_aniobj,*the_acolor);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jdouble JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_Width (JNIEnv *env, jobject theobj, jobject aniobj)
-{
-jdouble thejret;
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_aniobj;
- void* ptr_aniobj = jcas_GetHandle(env,aniobj);
-
- if ( ptr_aniobj != NULL ) the_aniobj = *( ( Handle( AIS_InteractiveObject )* )ptr_aniobj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->Width(the_aniobj);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_Status (JNIEnv *env, jobject theobj, jobject anObj, jobject astatus)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_anObj;
- void* ptr_anObj = jcas_GetHandle(env,anObj);
-
- if ( ptr_anObj != NULL ) the_anObj = *( ( Handle( AIS_InteractiveObject )* )ptr_anObj );
-
-TCollection_ExtendedString* the_astatus = (TCollection_ExtendedString*) jcas_GetHandle(env,astatus);
-if ( the_astatus == NULL ) {
-
- // The following assumes availability of the default constructor (what may not
- // always be the case). Therefore explicit exception is thrown if the null
- // object has been passed.
- // the_astatus = new TCollection_ExtendedString ();
- // jcas_SetHandle ( env, astatus, the_astatus );
- jcas_ThrowException (env, "NULL object has been passed while expecting an object manipulated by value");
-
-} // end if
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->Status(the_anObj,*the_astatus);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_UpdateCurrentViewer (JNIEnv *env, jobject theobj)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->UpdateCurrentViewer();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_UpdateCollector (JNIEnv *env, jobject theobj)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->UpdateCollector();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jint JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_DisplayMode (JNIEnv *env, jobject theobj)
-{
-jint thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->DisplayMode();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jshort JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_HilightColor (JNIEnv *env, jobject theobj)
-{
-jshort thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->HilightColor();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jshort JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1SelectionColor_11 (JNIEnv *env, jobject theobj)
-{
-jshort thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->SelectionColor();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jshort JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_PreSelectionColor (JNIEnv *env, jobject theobj)
-{
-jshort thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->PreSelectionColor();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jshort JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_DefaultColor (JNIEnv *env, jobject theobj)
-{
-jshort thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->DefaultColor();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jshort JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_SubIntensityColor (JNIEnv *env, jobject theobj)
-{
-jshort thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->SubIntensityColor();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_SetHilightColor (JNIEnv *env, jobject theobj, jshort aHiCol)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->SetHilightColor((Quantity_NameOfColor) aHiCol);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1SelectionColor_12 (JNIEnv *env, jobject theobj, jshort aCol)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->SelectionColor((Quantity_NameOfColor) aCol);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_SetPreselectionColor (JNIEnv *env, jobject theobj, jshort aCol)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->SetPreselectionColor((Quantity_NameOfColor) aCol);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_SetSubIntensityColor (JNIEnv *env, jobject theobj, jshort aCol)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->SetSubIntensityColor((Quantity_NameOfColor) aCol);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1SetDisplayMode_12 (JNIEnv *env, jobject theobj, jshort AMode, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->SetDisplayMode((AIS_DisplayMode) AMode,(Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1SetDeviationCoefficient_11 (JNIEnv *env, jobject theobj, jobject aniobj, jdouble aCoefficient, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_aniobj;
- void* ptr_aniobj = jcas_GetHandle(env,aniobj);
-
- if ( ptr_aniobj != NULL ) the_aniobj = *( ( Handle( AIS_InteractiveObject )* )ptr_aniobj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->SetDeviationCoefficient(the_aniobj,(Standard_Real) aCoefficient,(Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1SetDeviationAngle_11 (JNIEnv *env, jobject theobj, jobject aniobj, jdouble anAngle, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_aniobj;
- void* ptr_aniobj = jcas_GetHandle(env,aniobj);
-
- if ( ptr_aniobj != NULL ) the_aniobj = *( ( Handle( AIS_InteractiveObject )* )ptr_aniobj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->SetDeviationAngle(the_aniobj,(Standard_Real) anAngle,(Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_SetAngleAndDeviation (JNIEnv *env, jobject theobj, jobject aniobj, jdouble anAngle, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_aniobj;
- void* ptr_aniobj = jcas_GetHandle(env,aniobj);
-
- if ( ptr_aniobj != NULL ) the_aniobj = *( ( Handle( AIS_InteractiveObject )* )ptr_aniobj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->SetAngleAndDeviation(the_aniobj,(Standard_Real) anAngle,(Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1SetHLRDeviationCoefficient_11 (JNIEnv *env, jobject theobj, jobject aniobj, jdouble aCoefficient, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_aniobj;
- void* ptr_aniobj = jcas_GetHandle(env,aniobj);
-
- if ( ptr_aniobj != NULL ) the_aniobj = *( ( Handle( AIS_InteractiveObject )* )ptr_aniobj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->SetHLRDeviationCoefficient(the_aniobj,(Standard_Real) aCoefficient,(Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_SetHLRDeviationAngle (JNIEnv *env, jobject theobj, jobject aniobj, jdouble anAngle, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_aniobj;
- void* ptr_aniobj = jcas_GetHandle(env,aniobj);
-
- if ( ptr_aniobj != NULL ) the_aniobj = *( ( Handle( AIS_InteractiveObject )* )ptr_aniobj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->SetHLRDeviationAngle(the_aniobj,(Standard_Real) anAngle,(Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1SetHLRAngleAndDeviation_11 (JNIEnv *env, jobject theobj, jobject aniobj, jdouble anAngle, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_aniobj;
- void* ptr_aniobj = jcas_GetHandle(env,aniobj);
-
- if ( ptr_aniobj != NULL ) the_aniobj = *( ( Handle( AIS_InteractiveObject )* )ptr_aniobj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->SetHLRAngleAndDeviation(the_aniobj,(Standard_Real) anAngle,(Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1SetDeviationCoefficient_12 (JNIEnv *env, jobject theobj, jdouble aCoefficient)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->SetDeviationCoefficient((Standard_Real) aCoefficient);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jdouble JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_DeviationCoefficient (JNIEnv *env, jobject theobj)
-{
-jdouble thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->DeviationCoefficient();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1SetDeviationAngle_12 (JNIEnv *env, jobject theobj, jdouble anAngle)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->SetDeviationAngle((Standard_Real) anAngle);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jdouble JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_DeviationAngle (JNIEnv *env, jobject theobj)
-{
-jdouble thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->DeviationAngle();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1SetHLRDeviationCoefficient_12 (JNIEnv *env, jobject theobj, jdouble aCoefficient)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->SetHLRDeviationCoefficient((Standard_Real) aCoefficient);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jdouble JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_HLRDeviationCoefficient (JNIEnv *env, jobject theobj)
-{
-jdouble thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->HLRDeviationCoefficient();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_SetHLRAngle (JNIEnv *env, jobject theobj, jdouble anAngle)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->SetHLRAngle((Standard_Real) anAngle);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jdouble JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_HLRAngle (JNIEnv *env, jobject theobj)
-{
-jdouble thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->HLRAngle();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1SetHLRAngleAndDeviation_12 (JNIEnv *env, jobject theobj, jdouble anAngle)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->SetHLRAngleAndDeviation((Standard_Real) anAngle);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_HiddenLineAspect (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-Handle(Prs3d_LineAspect)* theret = new Handle(Prs3d_LineAspect);
-*theret = the_this->HiddenLineAspect();
-thejret = jcas_CreateObject(env,"CASCADESamplesJni/Prs3d_LineAspect",theret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_SetHiddenLineAspect (JNIEnv *env, jobject theobj, jobject anAspect)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( Prs3d_LineAspect ) the_anAspect;
- void* ptr_anAspect = jcas_GetHandle(env,anAspect);
-
- if ( ptr_anAspect != NULL ) the_anAspect = *( ( Handle( Prs3d_LineAspect )* )ptr_anAspect );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->SetHiddenLineAspect(the_anAspect);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_DrawHiddenLine (JNIEnv *env, jobject theobj)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->DrawHiddenLine();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_EnableDrawHiddenLine (JNIEnv *env, jobject theobj)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->EnableDrawHiddenLine();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_DisableDrawHiddenLine (JNIEnv *env, jobject theobj)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->DisableDrawHiddenLine();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_SetIsoNumber (JNIEnv *env, jobject theobj, jint NbIsos, jshort WhichIsos)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->SetIsoNumber((Standard_Integer) NbIsos,(AIS_TypeOfIso) WhichIsos);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jint JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_IsoNumber (JNIEnv *env, jobject theobj, jshort WhichIsos)
-{
-jint thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->IsoNumber((AIS_TypeOfIso) WhichIsos);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1IsoOnPlane_11 (JNIEnv *env, jobject theobj, jboolean SwitchOn)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->IsoOnPlane((Standard_Boolean) SwitchOn);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1IsoOnPlane_12 (JNIEnv *env, jobject theobj)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->IsoOnPlane();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_SetSelectedAspect (JNIEnv *env, jobject theobj, jobject anAspect, jboolean globalChange, jboolean updateViewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( Prs3d_BasicAspect ) the_anAspect;
- void* ptr_anAspect = jcas_GetHandle(env,anAspect);
-
- if ( ptr_anAspect != NULL ) the_anAspect = *( ( Handle( Prs3d_BasicAspect )* )ptr_anAspect );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->SetSelectedAspect(the_anAspect,(Standard_Boolean) globalChange,(Standard_Boolean) updateViewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jshort JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_MoveTo (JNIEnv *env, jobject theobj, jint XPix, jint YPix, jobject aView)
-{
-jshort thejret;
-
-jcas_Locking alock(env);
-{
-try {
- Handle( V3d_View ) the_aView;
- void* ptr_aView = jcas_GetHandle(env,aView);
-
- if ( ptr_aView != NULL ) the_aView = *( ( Handle( V3d_View )* )ptr_aView );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->MoveTo((Standard_Integer) XPix,(Standard_Integer) YPix,the_aView);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_HasNextDetected (JNIEnv *env, jobject theobj)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->HasNextDetected();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jint JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_HilightNextDetected (JNIEnv *env, jobject theobj, jobject aView)
-{
-jint thejret;
-
-jcas_Locking alock(env);
-{
-try {
- Handle( V3d_View ) the_aView;
- void* ptr_aView = jcas_GetHandle(env,aView);
-
- if ( ptr_aView != NULL ) the_aView = *( ( Handle( V3d_View )* )ptr_aView );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->HilightNextDetected(the_aView);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jint JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_HilightPreviousDetected (JNIEnv *env, jobject theobj, jobject aView)
-{
-jint thejret;
-
-jcas_Locking alock(env);
-{
-try {
- Handle( V3d_View ) the_aView;
- void* ptr_aView = jcas_GetHandle(env,aView);
-
- if ( ptr_aView != NULL ) the_aView = *( ( Handle( V3d_View )* )ptr_aView );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->HilightPreviousDetected(the_aView);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jshort JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1Select_11 (JNIEnv *env, jobject theobj, jint XPMin, jint YPMin, jint XPMax, jint YPMax, jobject aView, jboolean updateviewer)
-{
-jshort thejret;
-
-jcas_Locking alock(env);
-{
-try {
- Handle( V3d_View ) the_aView;
- void* ptr_aView = jcas_GetHandle(env,aView);
-
- if ( ptr_aView != NULL ) the_aView = *( ( Handle( V3d_View )* )ptr_aView );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->Select((Standard_Integer) XPMin,(Standard_Integer) YPMin,(Standard_Integer) XPMax,(Standard_Integer) YPMax,the_aView,(Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jshort JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1Select_12 (JNIEnv *env, jobject theobj, jobject Polyline, jobject aView, jboolean updateviewer)
-{
-jshort thejret;
-
-jcas_Locking alock(env);
-{
-try {
-TColgp_Array1OfPnt2d* the_Polyline = (TColgp_Array1OfPnt2d*) jcas_GetHandle(env,Polyline);
-if ( the_Polyline == NULL ) {
-
- // The following assumes availability of the default constructor (what may not
- // always be the case). Therefore explicit exception is thrown if the null
- // object has been passed.
- // the_Polyline = new TColgp_Array1OfPnt2d ();
- // jcas_SetHandle ( env, Polyline, the_Polyline );
- jcas_ThrowException (env, "NULL object has been passed while expecting an object manipulated by value");
-
-} // end if
- Handle( V3d_View ) the_aView;
- void* ptr_aView = jcas_GetHandle(env,aView);
-
- if ( ptr_aView != NULL ) the_aView = *( ( Handle( V3d_View )* )ptr_aView );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->Select(*the_Polyline,the_aView,(Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jshort JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1Select_13 (JNIEnv *env, jobject theobj, jboolean updateviewer)
-{
-jshort thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->Select((Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jshort JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1ShiftSelect_11 (JNIEnv *env, jobject theobj, jboolean updateviewer)
-{
-jshort thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->ShiftSelect((Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jshort JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1ShiftSelect_12 (JNIEnv *env, jobject theobj, jobject Polyline, jobject aView, jboolean updateviewer)
-{
-jshort thejret;
-
-jcas_Locking alock(env);
-{
-try {
-TColgp_Array1OfPnt2d* the_Polyline = (TColgp_Array1OfPnt2d*) jcas_GetHandle(env,Polyline);
-if ( the_Polyline == NULL ) {
-
- // The following assumes availability of the default constructor (what may not
- // always be the case). Therefore explicit exception is thrown if the null
- // object has been passed.
- // the_Polyline = new TColgp_Array1OfPnt2d ();
- // jcas_SetHandle ( env, Polyline, the_Polyline );
- jcas_ThrowException (env, "NULL object has been passed while expecting an object manipulated by value");
-
-} // end if
- Handle( V3d_View ) the_aView;
- void* ptr_aView = jcas_GetHandle(env,aView);
-
- if ( ptr_aView != NULL ) the_aView = *( ( Handle( V3d_View )* )ptr_aView );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->ShiftSelect(*the_Polyline,the_aView,(Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jshort JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1ShiftSelect_13 (JNIEnv *env, jobject theobj, jint XPMin, jint YPMin, jint XPMax, jint YPMax, jobject aView, jboolean updateviewer)
-{
-jshort thejret;
-
-jcas_Locking alock(env);
-{
-try {
- Handle( V3d_View ) the_aView;
- void* ptr_aView = jcas_GetHandle(env,aView);
-
- if ( ptr_aView != NULL ) the_aView = *( ( Handle( V3d_View )* )ptr_aView );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->ShiftSelect((Standard_Integer) XPMin,(Standard_Integer) YPMin,(Standard_Integer) XPMax,(Standard_Integer) YPMax,the_aView,(Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_SetToHilightSelected (JNIEnv *env, jobject theobj, jboolean toHilight)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->SetToHilightSelected((Standard_Boolean) toHilight);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_ToHilightSelected (JNIEnv *env, jobject theobj)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->ToHilightSelected();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_SetCurrentObject (JNIEnv *env, jobject theobj, jobject aniobj, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_aniobj;
- void* ptr_aniobj = jcas_GetHandle(env,aniobj);
-
- if ( ptr_aniobj != NULL ) the_aniobj = *( ( Handle( AIS_InteractiveObject )* )ptr_aniobj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->SetCurrentObject(the_aniobj,(Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AddOrRemoveCurrentObject (JNIEnv *env, jobject theobj, jobject aniobj, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_aniobj;
- void* ptr_aniobj = jcas_GetHandle(env,aniobj);
-
- if ( ptr_aniobj != NULL ) the_aniobj = *( ( Handle( AIS_InteractiveObject )* )ptr_aniobj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->AddOrRemoveCurrentObject(the_aniobj,(Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_UpdateCurrent (JNIEnv *env, jobject theobj)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->UpdateCurrent();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_WasCurrentTouched (JNIEnv *env, jobject theobj)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->WasCurrentTouched();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_SetOkCurrent (JNIEnv *env, jobject theobj)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->SetOkCurrent();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_IsCurrent (JNIEnv *env, jobject theobj, jobject aniobj)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_aniobj;
- void* ptr_aniobj = jcas_GetHandle(env,aniobj);
-
- if ( ptr_aniobj != NULL ) the_aniobj = *( ( Handle( AIS_InteractiveObject )* )ptr_aniobj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->IsCurrent(the_aniobj);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_InitCurrent (JNIEnv *env, jobject theobj)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->InitCurrent();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_MoreCurrent (JNIEnv *env, jobject theobj)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->MoreCurrent();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_NextCurrent (JNIEnv *env, jobject theobj)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->NextCurrent();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_Current (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-Handle(AIS_InteractiveObject)* theret = new Handle(AIS_InteractiveObject);
-*theret = the_this->Current();
-thejret = jcas_CreateObject(env,"CASCADESamplesJni/AIS_InteractiveObject",theret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jint JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_NbCurrents (JNIEnv *env, jobject theobj)
-{
-jint thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->NbCurrents();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_FirstCurrentObject (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-Handle(AIS_InteractiveObject)* theret = new Handle(AIS_InteractiveObject);
-*theret = the_this->FirstCurrentObject();
-thejret = jcas_CreateObject(env,"CASCADESamplesJni/AIS_InteractiveObject",theret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_HilightCurrents (JNIEnv *env, jobject theobj, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->HilightCurrents((Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_UnhilightCurrents (JNIEnv *env, jobject theobj, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->UnhilightCurrents((Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_ClearCurrents (JNIEnv *env, jobject theobj, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->ClearCurrents((Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_SetSelected (JNIEnv *env, jobject theobj, jobject aniObj, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_aniObj;
- void* ptr_aniObj = jcas_GetHandle(env,aniObj);
-
- if ( ptr_aniObj != NULL ) the_aniObj = *( ( Handle( AIS_InteractiveObject )* )ptr_aniObj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->SetSelected(the_aniObj,(Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_SetSelectedCurrent (JNIEnv *env, jobject theobj)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->SetSelectedCurrent();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_UpdateSelected (JNIEnv *env, jobject theobj, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->UpdateSelected((Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1AddOrRemoveSelected_11 (JNIEnv *env, jobject theobj, jobject aniobj, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_aniobj;
- void* ptr_aniobj = jcas_GetHandle(env,aniobj);
-
- if ( ptr_aniobj != NULL ) the_aniobj = *( ( Handle( AIS_InteractiveObject )* )ptr_aniobj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->AddOrRemoveSelected(the_aniobj,(Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_HilightSelected (JNIEnv *env, jobject theobj, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->HilightSelected((Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_UnhilightSelected (JNIEnv *env, jobject theobj, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->UnhilightSelected((Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_ClearSelected (JNIEnv *env, jobject theobj, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->ClearSelected((Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1AddOrRemoveSelected_12 (JNIEnv *env, jobject theobj, jobject aShape, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
-TopoDS_Shape* the_aShape = (TopoDS_Shape*) jcas_GetHandle(env,aShape);
-if ( the_aShape == NULL ) {
-
- // The following assumes availability of the default constructor (what may not
- // always be the case). Therefore explicit exception is thrown if the null
- // object has been passed.
- // the_aShape = new TopoDS_Shape ();
- // jcas_SetHandle ( env, aShape, the_aShape );
- jcas_ThrowException (env, "NULL object has been passed while expecting an object manipulated by value");
-
-} // end if
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->AddOrRemoveSelected(*the_aShape,(Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1AddOrRemoveSelected_13 (JNIEnv *env, jobject theobj, jobject anOwner, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( SelectMgr_EntityOwner ) the_anOwner;
- void* ptr_anOwner = jcas_GetHandle(env,anOwner);
-
- if ( ptr_anOwner != NULL ) the_anOwner = *( ( Handle( SelectMgr_EntityOwner )* )ptr_anOwner );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->AddOrRemoveSelected(the_anOwner,(Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_IsSelected (JNIEnv *env, jobject theobj, jobject aniobj)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_aniobj;
- void* ptr_aniobj = jcas_GetHandle(env,aniobj);
-
- if ( ptr_aniobj != NULL ) the_aniobj = *( ( Handle( AIS_InteractiveObject )* )ptr_aniobj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->IsSelected(the_aniobj);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_InitSelected (JNIEnv *env, jobject theobj)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->InitSelected();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_MoreSelected (JNIEnv *env, jobject theobj)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->MoreSelected();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_NextSelected (JNIEnv *env, jobject theobj)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->NextSelected();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jint JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_NbSelected (JNIEnv *env, jobject theobj)
-{
-jint thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->NbSelected();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_HasSelectedShape (JNIEnv *env, jobject theobj)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->HasSelectedShape();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_SelectedShape (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-TopoDS_Shape* theret = new TopoDS_Shape(the_this->SelectedShape());
-thejret = jcas_CreateObject(env,"CASCADESamplesJni/TopoDS_Shape",theret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_SelectedOwner (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-Handle(SelectMgr_EntityOwner)* theret = new Handle(SelectMgr_EntityOwner);
-*theret = the_this->SelectedOwner();
-thejret = jcas_CreateObject(env,"CASCADESamplesJni/SelectMgr_EntityOwner",theret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_Interactive (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-Handle(AIS_InteractiveObject)* theret = new Handle(AIS_InteractiveObject);
-*theret = the_this->Interactive();
-thejret = jcas_CreateObject(env,"CASCADESamplesJni/AIS_InteractiveObject",theret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_SelectedInteractive (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-Handle(AIS_InteractiveObject)* theret = new Handle(AIS_InteractiveObject);
-*theret = the_this->SelectedInteractive();
-thejret = jcas_CreateObject(env,"CASCADESamplesJni/AIS_InteractiveObject",theret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_HasApplicative (JNIEnv *env, jobject theobj)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->HasApplicative();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_Applicative (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-Handle(Standard_Transient)* theret = new Handle(Standard_Transient);
-*theret = the_this->Applicative();
-thejret = jcas_CreateObject(env,"CASCADESamplesJni/Standard_Transient",theret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_HasDetected (JNIEnv *env, jobject theobj)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->HasDetected();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_HasDetectedShape (JNIEnv *env, jobject theobj)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->HasDetectedShape();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_DetectedShape (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-const TopoDS_Shape& theret = the_this->DetectedShape();
-thejret = jcas_CreateObject(env,"CASCADESamplesJni/TopoDS_Shape",&theret,0);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_DetectedInteractive (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-Handle(AIS_InteractiveObject)* theret = new Handle(AIS_InteractiveObject);
-*theret = the_this->DetectedInteractive();
-thejret = jcas_CreateObject(env,"CASCADESamplesJni/AIS_InteractiveObject",theret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_DetectedOwner (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-Handle(SelectMgr_EntityOwner)* theret = new Handle(SelectMgr_EntityOwner);
-*theret = the_this->DetectedOwner();
-thejret = jcas_CreateObject(env,"CASCADESamplesJni/SelectMgr_EntityOwner",theret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_InitDetected (JNIEnv *env, jobject theobj)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->InitDetected();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_MoreDetected (JNIEnv *env, jobject theobj)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->MoreDetected();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_NextDetected (JNIEnv *env, jobject theobj)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->NextDetected();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_DetectedCurrentShape (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-const TopoDS_Shape& theret = the_this->DetectedCurrentShape();
-thejret = jcas_CreateObject(env,"CASCADESamplesJni/TopoDS_Shape",&theret,0);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_DetectedCurrentObject (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-Handle(AIS_InteractiveObject)* theret = new Handle(AIS_InteractiveObject);
-*theret = the_this->DetectedCurrentObject();
-thejret = jcas_CreateObject(env,"CASCADESamplesJni/AIS_InteractiveObject",theret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jint JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_OpenLocalContext (JNIEnv *env, jobject theobj, jboolean UseDisplayedObjects, jboolean AllowShapeDecomposition, jboolean AcceptEraseOfObjects, jboolean BothViewers)
-{
-jint thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->OpenLocalContext((Standard_Boolean) UseDisplayedObjects,(Standard_Boolean) AllowShapeDecomposition,(Standard_Boolean) AcceptEraseOfObjects,(Standard_Boolean) BothViewers);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_CloseLocalContext (JNIEnv *env, jobject theobj, jint Index, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->CloseLocalContext((Standard_Integer) Index,(Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jint JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_IndexOfCurrentLocal (JNIEnv *env, jobject theobj)
-{
-jint thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->IndexOfCurrentLocal();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_CloseAllContexts (JNIEnv *env, jobject theobj, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->CloseAllContexts((Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_ResetOriginalState (JNIEnv *env, jobject theobj, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->ResetOriginalState((Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_ClearLocalContext (JNIEnv *env, jobject theobj, jshort TheMode)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->ClearLocalContext((AIS_ClearMode) TheMode);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_UseDisplayedObjects (JNIEnv *env, jobject theobj)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->UseDisplayedObjects();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_NotUseDisplayedObjects (JNIEnv *env, jobject theobj)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->NotUseDisplayedObjects();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_BeginImmediateDraw (JNIEnv *env, jobject theobj)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->BeginImmediateDraw();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_ImmediateAdd (JNIEnv *env, jobject theobj, jobject anIObj, jint aMode)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_anIObj;
- void* ptr_anIObj = jcas_GetHandle(env,anIObj);
-
- if ( ptr_anIObj != NULL ) the_anIObj = *( ( Handle( AIS_InteractiveObject )* )ptr_anIObj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->ImmediateAdd(the_anIObj,(Standard_Integer) aMode);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_ImmediateRemove (JNIEnv *env, jobject theobj, jobject anIObj, jint aMode)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_anIObj;
- void* ptr_anIObj = jcas_GetHandle(env,anIObj);
-
- if ( ptr_anIObj != NULL ) the_anIObj = *( ( Handle( AIS_InteractiveObject )* )ptr_anIObj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->ImmediateRemove(the_anIObj,(Standard_Integer) aMode);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1EndImmediateDraw_11 (JNIEnv *env, jobject theobj, jobject aView, jboolean DoubleBuf)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
- Handle( V3d_View ) the_aView;
- void* ptr_aView = jcas_GetHandle(env,aView);
-
- if ( ptr_aView != NULL ) the_aView = *( ( Handle( V3d_View )* )ptr_aView );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->EndImmediateDraw(the_aView,(Standard_Boolean) DoubleBuf);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1EndImmediateDraw_12 (JNIEnv *env, jobject theobj, jboolean DoubleBuf)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->EndImmediateDraw((Standard_Boolean) DoubleBuf);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_IsImmediateModeOn (JNIEnv *env, jobject theobj)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->IsImmediateModeOn();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_Drag (JNIEnv *env, jobject theobj, jobject aView, jobject anObject, jobject aTranformation, jboolean postConcatenate, jboolean update, jboolean zBuffer)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( V3d_View ) the_aView;
- void* ptr_aView = jcas_GetHandle(env,aView);
-
- if ( ptr_aView != NULL ) the_aView = *( ( Handle( V3d_View )* )ptr_aView );
-
- Handle( AIS_InteractiveObject ) the_anObject;
- void* ptr_anObject = jcas_GetHandle(env,anObject);
-
- if ( ptr_anObject != NULL ) the_anObject = *( ( Handle( AIS_InteractiveObject )* )ptr_anObject );
-
- Handle( Geom_Transformation ) the_aTranformation;
- void* ptr_aTranformation = jcas_GetHandle(env,aTranformation);
-
- if ( ptr_aTranformation != NULL ) the_aTranformation = *( ( Handle( Geom_Transformation )* )ptr_aTranformation );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->Drag(the_aView,the_anObject,the_aTranformation,(Standard_Boolean) postConcatenate,(Standard_Boolean) update,(Standard_Boolean) zBuffer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_SetAutomaticHilight (JNIEnv *env, jobject theobj, jboolean aStatus)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->SetAutomaticHilight((Standard_Boolean) aStatus);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AutomaticHilight (JNIEnv *env, jobject theobj)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->AutomaticHilight();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_SetZDetection (JNIEnv *env, jobject theobj, jboolean aStatus)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->SetZDetection((Standard_Boolean) aStatus);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_ZDetection (JNIEnv *env, jobject theobj)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->ZDetection();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_Activate (JNIEnv *env, jobject theobj, jobject anIobj, jint aMode)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_anIobj;
- void* ptr_anIobj = jcas_GetHandle(env,anIobj);
-
- if ( ptr_anIobj != NULL ) the_anIobj = *( ( Handle( AIS_InteractiveObject )* )ptr_anIobj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->Activate(the_anIobj,(Standard_Integer) aMode);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1Deactivate_11 (JNIEnv *env, jobject theobj, jobject anIObj)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_anIObj;
- void* ptr_anIObj = jcas_GetHandle(env,anIObj);
-
- if ( ptr_anIObj != NULL ) the_anIObj = *( ( Handle( AIS_InteractiveObject )* )ptr_anIObj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->Deactivate(the_anIObj);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1Deactivate_12 (JNIEnv *env, jobject theobj, jobject anIobj, jint aMode)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_anIobj;
- void* ptr_anIobj = jcas_GetHandle(env,anIobj);
-
- if ( ptr_anIobj != NULL ) the_anIobj = *( ( Handle( AIS_InteractiveObject )* )ptr_anIobj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->Deactivate(the_anIobj,(Standard_Integer) aMode);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_ActivatedModes (JNIEnv *env, jobject theobj, jobject anIobj, jobject theList)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_anIobj;
- void* ptr_anIobj = jcas_GetHandle(env,anIobj);
-
- if ( ptr_anIobj != NULL ) the_anIobj = *( ( Handle( AIS_InteractiveObject )* )ptr_anIobj );
-
-TColStd_ListOfInteger* the_theList = (TColStd_ListOfInteger*) jcas_GetHandle(env,theList);
-if ( the_theList == NULL ) {
-
- // The following assumes availability of the default constructor (what may not
- // always be the case). Therefore explicit exception is thrown if the null
- // object has been passed.
- // the_theList = new TColStd_ListOfInteger ();
- // jcas_SetHandle ( env, theList, the_theList );
- jcas_ThrowException (env, "NULL object has been passed while expecting an object manipulated by value");
-
-} // end if
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->ActivatedModes(the_anIobj,*the_theList);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_SetShapeDecomposition (JNIEnv *env, jobject theobj, jobject anIobj, jboolean aStatus)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_anIobj;
- void* ptr_anIobj = jcas_GetHandle(env,anIobj);
-
- if ( ptr_anIobj != NULL ) the_anIobj = *( ( Handle( AIS_InteractiveObject )* )ptr_anIobj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->SetShapeDecomposition(the_anIobj,(Standard_Boolean) aStatus);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_SetTemporaryAttributes (JNIEnv *env, jobject theobj, jobject anObj, jobject aDrawer, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_anObj;
- void* ptr_anObj = jcas_GetHandle(env,anObj);
-
- if ( ptr_anObj != NULL ) the_anObj = *( ( Handle( AIS_InteractiveObject )* )ptr_anObj );
-
- Handle( Prs3d_Drawer ) the_aDrawer;
- void* ptr_aDrawer = jcas_GetHandle(env,aDrawer);
-
- if ( ptr_aDrawer != NULL ) the_aDrawer = *( ( Handle( Prs3d_Drawer )* )ptr_aDrawer );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->SetTemporaryAttributes(the_anObj,the_aDrawer,(Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1SubIntensityOn_11 (JNIEnv *env, jobject theobj, jobject aniobj, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_aniobj;
- void* ptr_aniobj = jcas_GetHandle(env,aniobj);
-
- if ( ptr_aniobj != NULL ) the_aniobj = *( ( Handle( AIS_InteractiveObject )* )ptr_aniobj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->SubIntensityOn(the_aniobj,(Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1SubIntensityOff_11 (JNIEnv *env, jobject theobj, jobject aniobj, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_aniobj;
- void* ptr_aniobj = jcas_GetHandle(env,aniobj);
-
- if ( ptr_aniobj != NULL ) the_aniobj = *( ( Handle( AIS_InteractiveObject )* )ptr_aniobj );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->SubIntensityOff(the_aniobj,(Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1SubIntensityOn_12 (JNIEnv *env, jobject theobj, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->SubIntensityOn((Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1SubIntensityOff_12 (JNIEnv *env, jobject theobj, jboolean updateviewer)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->SubIntensityOff((Standard_Boolean) updateviewer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AddFilter (JNIEnv *env, jobject theobj, jobject aFilter)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( SelectMgr_Filter ) the_aFilter;
- void* ptr_aFilter = jcas_GetHandle(env,aFilter);
-
- if ( ptr_aFilter != NULL ) the_aFilter = *( ( Handle( SelectMgr_Filter )* )ptr_aFilter );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->AddFilter(the_aFilter);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_RemoveFilter (JNIEnv *env, jobject theobj, jobject aFilter)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( SelectMgr_Filter ) the_aFilter;
- void* ptr_aFilter = jcas_GetHandle(env,aFilter);
-
- if ( ptr_aFilter != NULL ) the_aFilter = *( ( Handle( SelectMgr_Filter )* )ptr_aFilter );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->RemoveFilter(the_aFilter);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_RemoveFilters (JNIEnv *env, jobject theobj)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->RemoveFilters();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_ActivateStandardMode (JNIEnv *env, jobject theobj, jshort aStandardActivation)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->ActivateStandardMode((TopAbs_ShapeEnum) aStandardActivation);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_DeactivateStandardMode (JNIEnv *env, jobject theobj, jshort aStandardActivation)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->DeactivateStandardMode((TopAbs_ShapeEnum) aStandardActivation);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_ActivatedStandardModes (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-const TColStd_ListOfInteger& theret = the_this->ActivatedStandardModes();
-thejret = jcas_CreateObject(env,"CASCADESamplesJni/TColStd_ListOfInteger",&theret,0);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_Filters (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-const SelectMgr_ListOfFilter& theret = the_this->Filters();
-thejret = jcas_CreateObject(env,"CASCADESamplesJni/SelectMgr_ListOfFilter",&theret,0);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_DefaultDrawer (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-Handle(Prs3d_Drawer)* theret = new Handle(Prs3d_Drawer);
-*theret = the_this->DefaultDrawer();
-thejret = jcas_CreateObject(env,"CASCADESamplesJni/Prs3d_Drawer",theret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_CurrentViewer (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-Handle(V3d_Viewer)* theret = new Handle(V3d_Viewer);
-*theret = the_this->CurrentViewer();
-thejret = jcas_CreateObject(env,"CASCADESamplesJni/V3d_Viewer",theret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1DisplayedObjects_11 (JNIEnv *env, jobject theobj, jobject aListOfIO, jboolean OnlyFromNeutral)
-{
-
-jcas_Locking alock(env);
-{
-try {
-AIS_ListOfInteractive* the_aListOfIO = (AIS_ListOfInteractive*) jcas_GetHandle(env,aListOfIO);
-if ( the_aListOfIO == NULL ) {
-
- // The following assumes availability of the default constructor (what may not
- // always be the case). Therefore explicit exception is thrown if the null
- // object has been passed.
- // the_aListOfIO = new AIS_ListOfInteractive ();
- // jcas_SetHandle ( env, aListOfIO, the_aListOfIO );
- jcas_ThrowException (env, "NULL object has been passed while expecting an object manipulated by value");
-
-} // end if
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->DisplayedObjects(*the_aListOfIO,(Standard_Boolean) OnlyFromNeutral);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1DisplayedObjects_12 (JNIEnv *env, jobject theobj, jshort WhichKind, jint WhichSignature, jobject aListOfIO, jboolean OnlyFromNeutral)
-{
-
-jcas_Locking alock(env);
-{
-try {
-AIS_ListOfInteractive* the_aListOfIO = (AIS_ListOfInteractive*) jcas_GetHandle(env,aListOfIO);
-if ( the_aListOfIO == NULL ) {
-
- // The following assumes availability of the default constructor (what may not
- // always be the case). Therefore explicit exception is thrown if the null
- // object has been passed.
- // the_aListOfIO = new AIS_ListOfInteractive ();
- // jcas_SetHandle ( env, aListOfIO, the_aListOfIO );
- jcas_ThrowException (env, "NULL object has been passed while expecting an object manipulated by value");
-
-} // end if
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->DisplayedObjects((AIS_KindOfInteractive) WhichKind,(Standard_Integer) WhichSignature,*the_aListOfIO,(Standard_Boolean) OnlyFromNeutral);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_Collector (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-Handle(V3d_Viewer)* theret = new Handle(V3d_Viewer);
-*theret = the_this->Collector();
-thejret = jcas_CreateObject(env,"CASCADESamplesJni/V3d_Viewer",theret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1ObjectsInCollector_11 (JNIEnv *env, jobject theobj, jobject aListOfIO)
-{
-
-jcas_Locking alock(env);
-{
-try {
-AIS_ListOfInteractive* the_aListOfIO = (AIS_ListOfInteractive*) jcas_GetHandle(env,aListOfIO);
-if ( the_aListOfIO == NULL ) {
-
- // The following assumes availability of the default constructor (what may not
- // always be the case). Therefore explicit exception is thrown if the null
- // object has been passed.
- // the_aListOfIO = new AIS_ListOfInteractive ();
- // jcas_SetHandle ( env, aListOfIO, the_aListOfIO );
- jcas_ThrowException (env, "NULL object has been passed while expecting an object manipulated by value");
-
-} // end if
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->ObjectsInCollector(*the_aListOfIO);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1ObjectsInCollector_12 (JNIEnv *env, jobject theobj, jshort WhichKind, jint WhichSignature, jobject aListOfIO)
-{
-
-jcas_Locking alock(env);
-{
-try {
-AIS_ListOfInteractive* the_aListOfIO = (AIS_ListOfInteractive*) jcas_GetHandle(env,aListOfIO);
-if ( the_aListOfIO == NULL ) {
-
- // The following assumes availability of the default constructor (what may not
- // always be the case). Therefore explicit exception is thrown if the null
- // object has been passed.
- // the_aListOfIO = new AIS_ListOfInteractive ();
- // jcas_SetHandle ( env, aListOfIO, the_aListOfIO );
- jcas_ThrowException (env, "NULL object has been passed while expecting an object manipulated by value");
-
-} // end if
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->ObjectsInCollector((AIS_KindOfInteractive) WhichKind,(Standard_Integer) WhichSignature,*the_aListOfIO);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_ObjectsInside (JNIEnv *env, jobject theobj, jobject aListOfIO, jshort WhichKind, jint WhichSignature)
-{
-
-jcas_Locking alock(env);
-{
-try {
-AIS_ListOfInteractive* the_aListOfIO = (AIS_ListOfInteractive*) jcas_GetHandle(env,aListOfIO);
-if ( the_aListOfIO == NULL ) {
-
- // The following assumes availability of the default constructor (what may not
- // always be the case). Therefore explicit exception is thrown if the null
- // object has been passed.
- // the_aListOfIO = new AIS_ListOfInteractive ();
- // jcas_SetHandle ( env, aListOfIO, the_aListOfIO );
- jcas_ThrowException (env, "NULL object has been passed while expecting an object manipulated by value");
-
-} // end if
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->ObjectsInside(*the_aListOfIO,(AIS_KindOfInteractive) WhichKind,(Standard_Integer) WhichSignature);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_HasOpenedContext (JNIEnv *env, jobject theobj)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->HasOpenedContext();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_CurrentName (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-const TCollection_AsciiString& theret = the_this->CurrentName();
-thejret = jcas_CreateObject(env,"CASCADESamplesJni/TCollection_AsciiString",&theret,0);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_SelectionName (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-const TCollection_AsciiString& theret = the_this->SelectionName();
-thejret = jcas_CreateObject(env,"CASCADESamplesJni/TCollection_AsciiString",&theret,0);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_DomainOfMainViewer (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-Standard_CString sret = the_this->DomainOfMainViewer();
-jclass CLSret = env->FindClass("jcas/Standard_CString");
-thejret = env->AllocObject(CLSret);
-jcas_SetCStringValue(env,thejret,sret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_DomainOfCollector (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-Standard_CString sret = the_this->DomainOfCollector();
-jclass CLSret = env->FindClass("jcas/Standard_CString");
-thejret = env->AllocObject(CLSret);
-jcas_SetCStringValue(env,thejret,sret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_SelectionManager (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-Handle(SelectMgr_SelectionManager)* theret = new Handle(SelectMgr_SelectionManager);
-*theret = the_this->SelectionManager();
-thejret = jcas_CreateObject(env,"CASCADESamplesJni/SelectMgr_SelectionManager",theret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_MainPrsMgr (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-Handle(PrsMgr_PresentationManager3d)* theret = new Handle(PrsMgr_PresentationManager3d);
-*theret = the_this->MainPrsMgr();
-thejret = jcas_CreateObject(env,"CASCADESamplesJni/PrsMgr_PresentationManager3d",theret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_CollectorPrsMgr (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-Handle(PrsMgr_PresentationManager3d)* theret = new Handle(PrsMgr_PresentationManager3d);
-*theret = the_this->CollectorPrsMgr();
-thejret = jcas_CreateObject(env,"CASCADESamplesJni/PrsMgr_PresentationManager3d",theret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_MainSelector (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-Handle(StdSelect_ViewerSelector3d)* theret = new Handle(StdSelect_ViewerSelector3d);
-*theret = the_this->MainSelector();
-thejret = jcas_CreateObject(env,"CASCADESamplesJni/StdSelect_ViewerSelector3d",theret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_LocalSelector (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-Handle(StdSelect_ViewerSelector3d)* theret = new Handle(StdSelect_ViewerSelector3d);
-*theret = the_this->LocalSelector();
-thejret = jcas_CreateObject(env,"CASCADESamplesJni/StdSelect_ViewerSelector3d",theret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_CollectorSelector (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-Handle(StdSelect_ViewerSelector3d)* theret = new Handle(StdSelect_ViewerSelector3d);
-*theret = the_this->CollectorSelector();
-thejret = jcas_CreateObject(env,"CASCADESamplesJni/StdSelect_ViewerSelector3d",theret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jint JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_PurgeDisplay (JNIEnv *env, jobject theobj, jboolean CollectorToo)
-{
-jint thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->PurgeDisplay((Standard_Boolean) CollectorToo);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jint JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_HighestIndex (JNIEnv *env, jobject theobj)
-{
-jint thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->HighestIndex();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1DisplayActiveAreas_11 (JNIEnv *env, jobject theobj, jobject aView)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( V3d_View ) the_aView;
- void* ptr_aView = jcas_GetHandle(env,aView);
-
- if ( ptr_aView != NULL ) the_aView = *( ( Handle( V3d_View )* )ptr_aView );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->DisplayActiveAreas(the_aView);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_ClearActiveAreas (JNIEnv *env, jobject theobj, jobject aView)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( V3d_View ) the_aView;
- void* ptr_aView = jcas_GetHandle(env,aView);
-
- if ( ptr_aView != NULL ) the_aView = *( ( Handle( V3d_View )* )ptr_aView );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->ClearActiveAreas(the_aView);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1DisplayActiveSensitive_11 (JNIEnv *env, jobject theobj, jobject aView)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( V3d_View ) the_aView;
- void* ptr_aView = jcas_GetHandle(env,aView);
-
- if ( ptr_aView != NULL ) the_aView = *( ( Handle( V3d_View )* )ptr_aView );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->DisplayActiveSensitive(the_aView);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_ClearActiveSensitive (JNIEnv *env, jobject theobj, jobject aView)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( V3d_View ) the_aView;
- void* ptr_aView = jcas_GetHandle(env,aView);
-
- if ( ptr_aView != NULL ) the_aView = *( ( Handle( V3d_View )* )ptr_aView );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->ClearActiveSensitive(the_aView);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1DisplayActiveSensitive_12 (JNIEnv *env, jobject theobj, jobject anObject, jobject aView)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_anObject;
- void* ptr_anObject = jcas_GetHandle(env,anObject);
-
- if ( ptr_anObject != NULL ) the_anObject = *( ( Handle( AIS_InteractiveObject )* )ptr_anObject );
-
- Handle( V3d_View ) the_aView;
- void* ptr_aView = jcas_GetHandle(env,aView);
-
- if ( ptr_aView != NULL ) the_aView = *( ( Handle( V3d_View )* )ptr_aView );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->DisplayActiveSensitive(the_anObject,the_aView);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_AIS_1InteractiveContext_1DisplayActiveAreas_12 (JNIEnv *env, jobject theobj, jobject anObject, jobject aView)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_anObject;
- void* ptr_anObject = jcas_GetHandle(env,anObject);
-
- if ( ptr_anObject != NULL ) the_anObject = *( ( Handle( AIS_InteractiveObject )* )ptr_anObject );
-
- Handle( V3d_View ) the_aView;
- void* ptr_aView = jcas_GetHandle(env,aView);
-
- if ( ptr_aView != NULL ) the_aView = *( ( Handle( V3d_View )* )ptr_aView );
-
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
-the_this->DisplayActiveAreas(the_anObject,the_aView);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1InteractiveContext_IsInLocal (JNIEnv *env, jobject theobj, jobject anObject, jobject TheIndex)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveObject ) the_anObject;
- void* ptr_anObject = jcas_GetHandle(env,anObject);
-
- if ( ptr_anObject != NULL ) the_anObject = *( ( Handle( AIS_InteractiveObject )* )ptr_anObject );
-
-Standard_Integer the_TheIndex = jcas_GetInteger(env,TheIndex);
-Handle(AIS_InteractiveContext) the_this = *((Handle(AIS_InteractiveContext)*) jcas_GetHandle(env,theobj));
- thejret = the_this->IsInLocal(the_anObject,the_TheIndex);
-jcas_SetInteger(env,TheIndex,the_TheIndex);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-}
diff --git a/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_AIS_InteractiveObject_java.cxx b/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_AIS_InteractiveObject_java.cxx
deleted file mode 100755
index c31ca3464d..0000000000
--- a/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_AIS_InteractiveObject_java.cxx
+++ /dev/null
@@ -1,1848 +0,0 @@
-//
-// Copyright (C) 1991 - 2000 by
-// Matra Datavision SA. All rights reserved.
-//
-// Copyright (C) 2001 - 2004 by
-// Open CASCADE SA. All rights reserved.
-//
-// This file is part of the Open CASCADE Technology software.
-//
-// This software may be distributed and/or modified under the terms and
-// conditions of the Open CASCADE Public License as defined by Open CASCADE SA
-// and appearing in the file LICENSE included in the packaging of this file.
-//
-// This software is distributed on an "AS IS" basis, without warranty of any
-// kind, and Open CASCADE SA hereby disclaims all such warranties,
-// including without limitation, any warranties of merchantability, fitness
-// for a particular purpose or non-infringement. Please see the License for
-// the specific terms and conditions governing rights and limitations under the
-// License.
-
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-
-
-extern "C" {
-
-
-JNIEXPORT jshort JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_Type (JNIEnv *env, jobject theobj)
-{
-jshort thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
- thejret = the_this->Type();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jint JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_Signature (JNIEnv *env, jobject theobj)
-{
-jint thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
- thejret = the_this->Signature();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_AcceptShapeDecomposition (JNIEnv *env, jobject theobj)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
- thejret = the_this->AcceptShapeDecomposition();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_SetCurrentFacingModel (JNIEnv *env, jobject theobj, jshort aModel)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
-the_this->SetCurrentFacingModel((Aspect_TypeOfFacingModel) aModel);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jshort JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_CurrentFacingModel (JNIEnv *env, jobject theobj)
-{
-jshort thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
- thejret = the_this->CurrentFacingModel();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_AIS_1InteractiveObject_1SetColor_11 (JNIEnv *env, jobject theobj, jobject aColor)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Quantity_Color* the_aColor = (Quantity_Color*) jcas_GetHandle(env,aColor);
-if ( the_aColor == NULL ) {
-
- // The following assumes availability of the default constructor (what may not
- // always be the case). Therefore explicit exception is thrown if the null
- // object has been passed.
- // the_aColor = new Quantity_Color ();
- // jcas_SetHandle ( env, aColor, the_aColor );
- jcas_ThrowException (env, "NULL object has been passed while expecting an object manipulated by value");
-
-} // end if
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
-the_this->SetColor(*the_aColor);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_AIS_1InteractiveObject_1SetColor_12 (JNIEnv *env, jobject theobj, jshort aColor)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
-the_this->SetColor((Quantity_NameOfColor) aColor);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_UnsetColor (JNIEnv *env, jobject theobj)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
-the_this->UnsetColor();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_SetWidth (JNIEnv *env, jobject theobj, jdouble aValue)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
-the_this->SetWidth((Standard_Real) aValue);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_UnsetWidth (JNIEnv *env, jobject theobj)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
-the_this->UnsetWidth();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_AcceptDisplayMode (JNIEnv *env, jobject theobj, jint aMode)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
- thejret = the_this->AcceptDisplayMode((Standard_Integer) aMode);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jint JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_DefaultDisplayMode (JNIEnv *env, jobject theobj)
-{
-jint thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
- thejret = the_this->DefaultDisplayMode();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_Redisplay (JNIEnv *env, jobject theobj, jboolean AllModes)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
-the_this->Redisplay((Standard_Boolean) AllModes);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_SetInfiniteState (JNIEnv *env, jobject theobj, jboolean aFlag)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
-the_this->SetInfiniteState((Standard_Boolean) aFlag);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_IsInfinite (JNIEnv *env, jobject theobj)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
- thejret = the_this->IsInfinite();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_HasInteractiveContext (JNIEnv *env, jobject theobj)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
- thejret = the_this->HasInteractiveContext();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_GetContext (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
-Handle(AIS_InteractiveContext)* theret = new Handle(AIS_InteractiveContext);
-*theret = the_this->GetContext();
-thejret = jcas_CreateObject(env,"CASCADESamplesJni/AIS_InteractiveContext",theret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_SetContext (JNIEnv *env, jobject theobj, jobject aCtx)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_InteractiveContext ) the_aCtx;
- void* ptr_aCtx = jcas_GetHandle(env,aCtx);
-
- if ( ptr_aCtx != NULL ) the_aCtx = *( ( Handle( AIS_InteractiveContext )* )ptr_aCtx );
-
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
-the_this->SetContext(the_aCtx);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_HasOwner (JNIEnv *env, jobject theobj)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
- thejret = the_this->HasOwner();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_GetOwner (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
-Handle(Standard_Transient)* theret = new Handle(Standard_Transient);
-*theret = the_this->GetOwner();
-thejret = jcas_CreateObject(env,"CASCADESamplesJni/Standard_Transient",theret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_SetOwner (JNIEnv *env, jobject theobj, jobject ApplicativeEntity)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( Standard_Transient ) the_ApplicativeEntity;
- void* ptr_ApplicativeEntity = jcas_GetHandle(env,ApplicativeEntity);
-
- if ( ptr_ApplicativeEntity != NULL ) the_ApplicativeEntity = *( ( Handle( Standard_Transient )* )ptr_ApplicativeEntity );
-
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
-the_this->SetOwner(the_ApplicativeEntity);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_ClearOwner (JNIEnv *env, jobject theobj)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
-the_this->ClearOwner();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_HasUsers (JNIEnv *env, jobject theobj)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
- thejret = the_this->HasUsers();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_Users (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
-const TColStd_ListOfTransient& theret = the_this->Users();
-thejret = jcas_CreateObject(env,"CASCADESamplesJni/TColStd_ListOfTransient",&theret,0);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_AddUser (JNIEnv *env, jobject theobj, jobject aUser)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( Standard_Transient ) the_aUser;
- void* ptr_aUser = jcas_GetHandle(env,aUser);
-
- if ( ptr_aUser != NULL ) the_aUser = *( ( Handle( Standard_Transient )* )ptr_aUser );
-
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
-the_this->AddUser(the_aUser);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_ClearUsers (JNIEnv *env, jobject theobj)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
-the_this->ClearUsers();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_HasDisplayMode (JNIEnv *env, jobject theobj)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
- thejret = the_this->HasDisplayMode();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_SetDisplayMode (JNIEnv *env, jobject theobj, jint aMode)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
-the_this->SetDisplayMode((Standard_Integer) aMode);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_UnsetDisplayMode (JNIEnv *env, jobject theobj)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
-the_this->UnsetDisplayMode();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jint JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_DisplayMode (JNIEnv *env, jobject theobj)
-{
-jint thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
- thejret = the_this->DisplayMode();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_HasSelectionMode (JNIEnv *env, jobject theobj)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
- thejret = the_this->HasSelectionMode();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jint JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_SelectionMode (JNIEnv *env, jobject theobj)
-{
-jint thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
- thejret = the_this->SelectionMode();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_SetSelectionMode (JNIEnv *env, jobject theobj, jint aMode)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
-the_this->SetSelectionMode((Standard_Integer) aMode);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_UnsetSelectionMode (JNIEnv *env, jobject theobj)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
-the_this->UnsetSelectionMode();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jint JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_SelectionPriority (JNIEnv *env, jobject theobj)
-{
-jint thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
- thejret = the_this->SelectionPriority();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_SetSelectionPriority (JNIEnv *env, jobject theobj, jint aPriority)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
-the_this->SetSelectionPriority((Standard_Integer) aPriority);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_UnsetSelectionPriority (JNIEnv *env, jobject theobj)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
-the_this->UnsetSelectionPriority();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_HasSelectionPriority (JNIEnv *env, jobject theobj)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
- thejret = the_this->HasSelectionPriority();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_HasHilightMode (JNIEnv *env, jobject theobj)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
- thejret = the_this->HasHilightMode();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jint JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_HilightMode (JNIEnv *env, jobject theobj)
-{
-jint thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
- thejret = the_this->HilightMode();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_SetHilightMode (JNIEnv *env, jobject theobj, jint anIndex)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
-the_this->SetHilightMode((Standard_Integer) anIndex);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_UnsetHilightMode (JNIEnv *env, jobject theobj)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
-the_this->UnsetHilightMode();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_HasColor (JNIEnv *env, jobject theobj)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
- thejret = the_this->HasColor();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jshort JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_AIS_1InteractiveObject_1Color_11 (JNIEnv *env, jobject theobj)
-{
-jshort thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
- thejret = the_this->Color();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_AIS_1InteractiveObject_1Color_12 (JNIEnv *env, jobject theobj, jobject aColor)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Quantity_Color* the_aColor = (Quantity_Color*) jcas_GetHandle(env,aColor);
-if ( the_aColor == NULL ) {
-
- // The following assumes availability of the default constructor (what may not
- // always be the case). Therefore explicit exception is thrown if the null
- // object has been passed.
- // the_aColor = new Quantity_Color ();
- // jcas_SetHandle ( env, aColor, the_aColor );
- jcas_ThrowException (env, "NULL object has been passed while expecting an object manipulated by value");
-
-} // end if
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
-the_this->Color(*the_aColor);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_HasWidth (JNIEnv *env, jobject theobj)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
- thejret = the_this->HasWidth();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jdouble JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_Width (JNIEnv *env, jobject theobj)
-{
-jdouble thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
- thejret = the_this->Width();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_HasMaterial (JNIEnv *env, jobject theobj)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
- thejret = the_this->HasMaterial();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jshort JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_Material (JNIEnv *env, jobject theobj)
-{
-jshort thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
- thejret = the_this->Material();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_AIS_1InteractiveObject_1SetMaterial_11 (JNIEnv *env, jobject theobj, jshort aName)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
-the_this->SetMaterial((Graphic3d_NameOfMaterial) aName);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_AIS_1InteractiveObject_1SetMaterial_12 (JNIEnv *env, jobject theobj, jobject aName)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Graphic3d_MaterialAspect* the_aName = (Graphic3d_MaterialAspect*) jcas_GetHandle(env,aName);
-if ( the_aName == NULL ) {
-
- // The following assumes availability of the default constructor (what may not
- // always be the case). Therefore explicit exception is thrown if the null
- // object has been passed.
- // the_aName = new Graphic3d_MaterialAspect ();
- // jcas_SetHandle ( env, aName, the_aName );
- jcas_ThrowException (env, "NULL object has been passed while expecting an object manipulated by value");
-
-} // end if
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
-the_this->SetMaterial(*the_aName);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_UnsetMaterial (JNIEnv *env, jobject theobj)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
-the_this->UnsetMaterial();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_SetTransparency (JNIEnv *env, jobject theobj, jdouble aValue)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
-the_this->SetTransparency((Standard_Real) aValue);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_IsTransparent (JNIEnv *env, jobject theobj)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
- thejret = the_this->IsTransparent();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jdouble JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_Transparency (JNIEnv *env, jobject theobj)
-{
-jdouble thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
- thejret = the_this->Transparency();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_UnsetTransparency (JNIEnv *env, jobject theobj)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
-the_this->UnsetTransparency();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_SetAttributes (JNIEnv *env, jobject theobj, jobject aDrawer)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( AIS_Drawer ) the_aDrawer;
- void* ptr_aDrawer = jcas_GetHandle(env,aDrawer);
-
- if ( ptr_aDrawer != NULL ) the_aDrawer = *( ( Handle( AIS_Drawer )* )ptr_aDrawer );
-
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
-the_this->SetAttributes(the_aDrawer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_Attributes (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
-Handle(AIS_Drawer)* theret = new Handle(AIS_Drawer);
-*theret = the_this->Attributes();
-thejret = jcas_CreateObject(env,"CASCADESamplesJni/AIS_Drawer",theret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_UnsetAttributes (JNIEnv *env, jobject theobj)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
-the_this->UnsetAttributes();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_AIS_1InteractiveObject_1State_11 (JNIEnv *env, jobject theobj, jint theState)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
-the_this->State((Standard_Integer) theState);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jint JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_AIS_1InteractiveObject_1State_12 (JNIEnv *env, jobject theobj)
-{
-jint thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
- thejret = the_this->State();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_SetDegenerateModel (JNIEnv *env, jobject theobj, jshort aModel, jdouble aRatio)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
-the_this->SetDegenerateModel((Aspect_TypeOfDegenerateModel) aModel,(Quantity_Ratio) aRatio);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jshort JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_DegenerateModel (JNIEnv *env, jobject theobj, jobject aRatio)
-{
-jshort thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Standard_Real the_aRatio = jcas_GetReal(env,aRatio);
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
- thejret = the_this->DegenerateModel(the_aRatio);
-jcas_SetReal(env,aRatio,the_aRatio);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_SetTransformation (JNIEnv *env, jobject theobj, jobject aTranformation, jboolean postConcatenate, jboolean updateSelection)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( Geom_Transformation ) the_aTranformation;
- void* ptr_aTranformation = jcas_GetHandle(env,aTranformation);
-
- if ( ptr_aTranformation != NULL ) the_aTranformation = *( ( Handle( Geom_Transformation )* )ptr_aTranformation );
-
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
-the_this->SetTransformation(the_aTranformation,(Standard_Boolean) postConcatenate,(Standard_Boolean) updateSelection);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_UnsetTransformation (JNIEnv *env, jobject theobj)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
-the_this->UnsetTransformation();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_Transformation (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
-Handle(Geom_Transformation)* theret = new Handle(Geom_Transformation);
-*theret = the_this->Transformation();
-thejret = jcas_CreateObject(env,"CASCADESamplesJni/Geom_Transformation",theret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_HasTransformation (JNIEnv *env, jobject theobj)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
- thejret = the_this->HasTransformation();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_HasPresentation (JNIEnv *env, jobject theobj)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
- thejret = the_this->HasPresentation();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_Presentation (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
-Handle(Prs3d_Presentation)* theret = new Handle(Prs3d_Presentation);
-*theret = the_this->Presentation();
-thejret = jcas_CreateObject(env,"CASCADESamplesJni/Prs3d_Presentation",theret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_SetAspect (JNIEnv *env, jobject theobj, jobject anAspect, jboolean globalChange)
-{
-
-jcas_Locking alock(env);
-{
-try {
- Handle( Prs3d_BasicAspect ) the_anAspect;
- void* ptr_anAspect = jcas_GetHandle(env,anAspect);
-
- if ( ptr_anAspect != NULL ) the_anAspect = *( ( Handle( Prs3d_BasicAspect )* )ptr_anAspect );
-
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
-the_this->SetAspect(the_anAspect,(Standard_Boolean) globalChange);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_SetPolygonOffsets (JNIEnv *env, jobject theobj, jint aMode, jdouble aFactor, jdouble aUnits)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
-the_this->SetPolygonOffsets((Standard_Integer) aMode,(Standard_Real) aFactor,(Standard_Real) aUnits);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_HasPolygonOffsets (JNIEnv *env, jobject theobj)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
- thejret = the_this->HasPolygonOffsets();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1InteractiveObject_PolygonOffsets (JNIEnv *env, jobject theobj, jobject aMode, jobject aFactor, jobject aUnits)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Standard_Integer the_aMode = jcas_GetInteger(env,aMode);
-Standard_Real the_aFactor = jcas_GetReal(env,aFactor);
-Standard_Real the_aUnits = jcas_GetReal(env,aUnits);
-Handle(AIS_InteractiveObject) the_this = *((Handle(AIS_InteractiveObject)*) jcas_GetHandle(env,theobj));
-the_this->PolygonOffsets(the_aMode,the_aFactor,the_aUnits);
-jcas_SetInteger(env,aMode,the_aMode);
-jcas_SetReal(env,aFactor,the_aFactor);
-jcas_SetReal(env,aUnits,the_aUnits);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-}
diff --git a/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_AIS_ListOfInteractive_java.cxx b/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_AIS_ListOfInteractive_java.cxx
deleted file mode 100755
index 048e0e22fc..0000000000
--- a/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_AIS_ListOfInteractive_java.cxx
+++ /dev/null
@@ -1,43 +0,0 @@
-//
-// Copyright (C) 1991 - 2000 by
-// Matra Datavision SA. All rights reserved.
-//
-// Copyright (C) 2001 - 2004 by
-// Open CASCADE SA. All rights reserved.
-//
-// This file is part of the Open CASCADE Technology software.
-//
-// This software may be distributed and/or modified under the terms and
-// conditions of the Open CASCADE Public License as defined by Open CASCADE SA
-// and appearing in the file LICENSE included in the packaging of this file.
-//
-// This software is distributed on an "AS IS" basis, without warranty of any
-// kind, and Open CASCADE SA hereby disclaims all such warranties,
-// including without limitation, any warranties of merchantability, fitness
-// for a particular purpose or non-infringement. Please see the License for
-// the specific terms and conditions governing rights and limitations under the
-// License.
-
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-
-
-
-extern "C" {
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1ListOfInteractive_FinalizeValue(JNIEnv *, jclass, jlong theid)
-{
-if (theid) {
- AIS_ListOfInteractive* theobj = (AIS_ListOfInteractive*) theid;
- delete theobj;
-}
-}
-
-
-}
diff --git a/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_AIS_Shape_java.cxx b/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_AIS_Shape_java.cxx
deleted file mode 100755
index 3118a7a9bb..0000000000
--- a/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_AIS_Shape_java.cxx
+++ /dev/null
@@ -1,1049 +0,0 @@
-//
-// Copyright (C) 1991 - 2000 by
-// Matra Datavision SA. All rights reserved.
-//
-// Copyright (C) 2001 - 2004 by
-// Open CASCADE SA. All rights reserved.
-//
-// This file is part of the Open CASCADE Technology software.
-//
-// This software may be distributed and/or modified under the terms and
-// conditions of the Open CASCADE Public License as defined by Open CASCADE SA
-// and appearing in the file LICENSE included in the packaging of this file.
-//
-// This software is distributed on an "AS IS" basis, without warranty of any
-// kind, and Open CASCADE SA hereby disclaims all such warranties,
-// including without limitation, any warranties of merchantability, fitness
-// for a particular purpose or non-infringement. Please see the License for
-// the specific terms and conditions governing rights and limitations under the
-// License.
-
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-
-
-extern "C" {
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1Shape_AIS_1Shape_1Create_10 (JNIEnv *env, jobject theobj, jobject shap)
-{
-
-jcas_Locking alock(env);
-{
-try {
-TopoDS_Shape* the_shap = (TopoDS_Shape*) jcas_GetHandle(env,shap);
-if ( the_shap == NULL ) {
-
- // The following assumes availability of the default constructor (what may not
- // always be the case). Therefore explicit exception is thrown if the null
- // object has been passed.
- // the_shap = new TopoDS_Shape ();
- // jcas_SetHandle ( env, shap, the_shap );
- jcas_ThrowException (env, "NULL object has been passed while expecting an object manipulated by value");
-
-} // end if
-Handle(AIS_Shape)* theret = new Handle(AIS_Shape);
-*theret = new AIS_Shape(*the_shap);
-jcas_SetHandle(env,theobj,theret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jint JNICALL Java_CASCADESamplesJni_AIS_1Shape_Signature (JNIEnv *env, jobject theobj)
-{
-jint thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_Shape) the_this = *((Handle(AIS_Shape)*) jcas_GetHandle(env,theobj));
- thejret = the_this->Signature();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jshort JNICALL Java_CASCADESamplesJni_AIS_1Shape_Type (JNIEnv *env, jobject theobj)
-{
-jshort thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_Shape) the_this = *((Handle(AIS_Shape)*) jcas_GetHandle(env,theobj));
- thejret = the_this->Type();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1Shape_AcceptShapeDecomposition (JNIEnv *env, jobject theobj)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_Shape) the_this = *((Handle(AIS_Shape)*) jcas_GetHandle(env,theobj));
- thejret = the_this->AcceptShapeDecomposition();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1Shape_Set (JNIEnv *env, jobject theobj, jobject ashap)
-{
-
-jcas_Locking alock(env);
-{
-try {
-TopoDS_Shape* the_ashap = (TopoDS_Shape*) jcas_GetHandle(env,ashap);
-if ( the_ashap == NULL ) {
-
- // The following assumes availability of the default constructor (what may not
- // always be the case). Therefore explicit exception is thrown if the null
- // object has been passed.
- // the_ashap = new TopoDS_Shape ();
- // jcas_SetHandle ( env, ashap, the_ashap );
- jcas_ThrowException (env, "NULL object has been passed while expecting an object manipulated by value");
-
-} // end if
-Handle(AIS_Shape) the_this = *((Handle(AIS_Shape)*) jcas_GetHandle(env,theobj));
-the_this->Set(*the_ashap);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_AIS_1Shape_Shape (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_Shape) the_this = *((Handle(AIS_Shape)*) jcas_GetHandle(env,theobj));
-const TopoDS_Shape& theret = the_this->Shape();
-thejret = jcas_CreateObject(env,"CASCADESamplesJni/TopoDS_Shape",&theret,0);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1Shape_AIS_1Shape_1SetOwnDeviationCoefficient_11 (JNIEnv *env, jobject theobj)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_Shape) the_this = *((Handle(AIS_Shape)*) jcas_GetHandle(env,theobj));
- thejret = the_this->SetOwnDeviationCoefficient();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1Shape_AIS_1Shape_1SetOwnHLRDeviationCoefficient_11 (JNIEnv *env, jobject theobj)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_Shape) the_this = *((Handle(AIS_Shape)*) jcas_GetHandle(env,theobj));
- thejret = the_this->SetOwnHLRDeviationCoefficient();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1Shape_AIS_1Shape_1SetOwnDeviationAngle_11 (JNIEnv *env, jobject theobj)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_Shape) the_this = *((Handle(AIS_Shape)*) jcas_GetHandle(env,theobj));
- thejret = the_this->SetOwnDeviationAngle();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1Shape_AIS_1Shape_1SetOwnHLRDeviationAngle_11 (JNIEnv *env, jobject theobj)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_Shape) the_this = *((Handle(AIS_Shape)*) jcas_GetHandle(env,theobj));
- thejret = the_this->SetOwnHLRDeviationAngle();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1Shape_AIS_1Shape_1SetOwnDeviationCoefficient_12 (JNIEnv *env, jobject theobj, jdouble aCoefficient)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_Shape) the_this = *((Handle(AIS_Shape)*) jcas_GetHandle(env,theobj));
-the_this->SetOwnDeviationCoefficient((Standard_Real) aCoefficient);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1Shape_AIS_1Shape_1SetOwnHLRDeviationCoefficient_12 (JNIEnv *env, jobject theobj, jdouble aCoefficient)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_Shape) the_this = *((Handle(AIS_Shape)*) jcas_GetHandle(env,theobj));
-the_this->SetOwnHLRDeviationCoefficient((Standard_Real) aCoefficient);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1Shape_SetAngleAndDeviation (JNIEnv *env, jobject theobj, jdouble anAngle)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_Shape) the_this = *((Handle(AIS_Shape)*) jcas_GetHandle(env,theobj));
-the_this->SetAngleAndDeviation((Standard_Real) anAngle);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jdouble JNICALL Java_CASCADESamplesJni_AIS_1Shape_UserAngle (JNIEnv *env, jobject theobj)
-{
-jdouble thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_Shape) the_this = *((Handle(AIS_Shape)*) jcas_GetHandle(env,theobj));
- thejret = the_this->UserAngle();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1Shape_AIS_1Shape_1SetOwnDeviationAngle_12 (JNIEnv *env, jobject theobj, jdouble anAngle)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_Shape) the_this = *((Handle(AIS_Shape)*) jcas_GetHandle(env,theobj));
-the_this->SetOwnDeviationAngle((Standard_Real) anAngle);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1Shape_SetHLRAngleAndDeviation (JNIEnv *env, jobject theobj, jdouble anAngle)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_Shape) the_this = *((Handle(AIS_Shape)*) jcas_GetHandle(env,theobj));
-the_this->SetHLRAngleAndDeviation((Standard_Real) anAngle);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1Shape_AIS_1Shape_1SetOwnHLRDeviationAngle_12 (JNIEnv *env, jobject theobj, jdouble anAngle)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_Shape) the_this = *((Handle(AIS_Shape)*) jcas_GetHandle(env,theobj));
-the_this->SetOwnHLRDeviationAngle((Standard_Real) anAngle);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1Shape_OwnDeviationCoefficient (JNIEnv *env, jobject theobj, jobject aCoefficient, jobject aPreviousCoefficient)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Standard_Real the_aCoefficient = jcas_GetReal(env,aCoefficient);
-Standard_Real the_aPreviousCoefficient = jcas_GetReal(env,aPreviousCoefficient);
-Handle(AIS_Shape) the_this = *((Handle(AIS_Shape)*) jcas_GetHandle(env,theobj));
- thejret = the_this->OwnDeviationCoefficient(the_aCoefficient,the_aPreviousCoefficient);
-jcas_SetReal(env,aCoefficient,the_aCoefficient);
-jcas_SetReal(env,aPreviousCoefficient,the_aPreviousCoefficient);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1Shape_OwnHLRDeviationCoefficient (JNIEnv *env, jobject theobj, jobject aCoefficient, jobject aPreviousCoefficient)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Standard_Real the_aCoefficient = jcas_GetReal(env,aCoefficient);
-Standard_Real the_aPreviousCoefficient = jcas_GetReal(env,aPreviousCoefficient);
-Handle(AIS_Shape) the_this = *((Handle(AIS_Shape)*) jcas_GetHandle(env,theobj));
- thejret = the_this->OwnHLRDeviationCoefficient(the_aCoefficient,the_aPreviousCoefficient);
-jcas_SetReal(env,aCoefficient,the_aCoefficient);
-jcas_SetReal(env,aPreviousCoefficient,the_aPreviousCoefficient);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1Shape_OwnDeviationAngle (JNIEnv *env, jobject theobj, jobject anAngle, jobject aPreviousAngle)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Standard_Real the_anAngle = jcas_GetReal(env,anAngle);
-Standard_Real the_aPreviousAngle = jcas_GetReal(env,aPreviousAngle);
-Handle(AIS_Shape) the_this = *((Handle(AIS_Shape)*) jcas_GetHandle(env,theobj));
- thejret = the_this->OwnDeviationAngle(the_anAngle,the_aPreviousAngle);
-jcas_SetReal(env,anAngle,the_anAngle);
-jcas_SetReal(env,aPreviousAngle,the_aPreviousAngle);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_AIS_1Shape_OwnHLRDeviationAngle (JNIEnv *env, jobject theobj, jobject anAngle, jobject aPreviousAngle)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Standard_Real the_anAngle = jcas_GetReal(env,anAngle);
-Standard_Real the_aPreviousAngle = jcas_GetReal(env,aPreviousAngle);
-Handle(AIS_Shape) the_this = *((Handle(AIS_Shape)*) jcas_GetHandle(env,theobj));
- thejret = the_this->OwnHLRDeviationAngle(the_anAngle,the_aPreviousAngle);
-jcas_SetReal(env,anAngle,the_anAngle);
-jcas_SetReal(env,aPreviousAngle,the_aPreviousAngle);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1Shape_AIS_1Shape_1SetColor_11 (JNIEnv *env, jobject theobj, jshort aColor)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_Shape) the_this = *((Handle(AIS_Shape)*) jcas_GetHandle(env,theobj));
-the_this->SetColor((Quantity_NameOfColor) aColor);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1Shape_AIS_1Shape_1SetColor_12 (JNIEnv *env, jobject theobj, jobject aColor)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Quantity_Color* the_aColor = (Quantity_Color*) jcas_GetHandle(env,aColor);
-if ( the_aColor == NULL ) {
-
- // The following assumes availability of the default constructor (what may not
- // always be the case). Therefore explicit exception is thrown if the null
- // object has been passed.
- // the_aColor = new Quantity_Color ();
- // jcas_SetHandle ( env, aColor, the_aColor );
- jcas_ThrowException (env, "NULL object has been passed while expecting an object manipulated by value");
-
-} // end if
-Handle(AIS_Shape) the_this = *((Handle(AIS_Shape)*) jcas_GetHandle(env,theobj));
-the_this->SetColor(*the_aColor);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1Shape_UnsetColor (JNIEnv *env, jobject theobj)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_Shape) the_this = *((Handle(AIS_Shape)*) jcas_GetHandle(env,theobj));
-the_this->UnsetColor();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1Shape_SetWidth (JNIEnv *env, jobject theobj, jdouble aValue)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_Shape) the_this = *((Handle(AIS_Shape)*) jcas_GetHandle(env,theobj));
-the_this->SetWidth((Standard_Real) aValue);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1Shape_UnsetWidth (JNIEnv *env, jobject theobj)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_Shape) the_this = *((Handle(AIS_Shape)*) jcas_GetHandle(env,theobj));
-the_this->UnsetWidth();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1Shape_AIS_1Shape_1SetMaterial_11 (JNIEnv *env, jobject theobj, jshort aName)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_Shape) the_this = *((Handle(AIS_Shape)*) jcas_GetHandle(env,theobj));
-the_this->SetMaterial((Graphic3d_NameOfMaterial) aName);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1Shape_AIS_1Shape_1SetMaterial_12 (JNIEnv *env, jobject theobj, jobject aName)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Graphic3d_MaterialAspect* the_aName = (Graphic3d_MaterialAspect*) jcas_GetHandle(env,aName);
-if ( the_aName == NULL ) {
-
- // The following assumes availability of the default constructor (what may not
- // always be the case). Therefore explicit exception is thrown if the null
- // object has been passed.
- // the_aName = new Graphic3d_MaterialAspect ();
- // jcas_SetHandle ( env, aName, the_aName );
- jcas_ThrowException (env, "NULL object has been passed while expecting an object manipulated by value");
-
-} // end if
-Handle(AIS_Shape) the_this = *((Handle(AIS_Shape)*) jcas_GetHandle(env,theobj));
-the_this->SetMaterial(*the_aName);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1Shape_UnsetMaterial (JNIEnv *env, jobject theobj)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_Shape) the_this = *((Handle(AIS_Shape)*) jcas_GetHandle(env,theobj));
-the_this->UnsetMaterial();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1Shape_SetTransparency (JNIEnv *env, jobject theobj, jdouble aValue)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_Shape) the_this = *((Handle(AIS_Shape)*) jcas_GetHandle(env,theobj));
-the_this->SetTransparency((Standard_Real) aValue);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1Shape_UnsetTransparency (JNIEnv *env, jobject theobj)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_Shape) the_this = *((Handle(AIS_Shape)*) jcas_GetHandle(env,theobj));
-the_this->UnsetTransparency();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_AIS_1Shape_BoundingBox (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_Shape) the_this = *((Handle(AIS_Shape)*) jcas_GetHandle(env,theobj));
-const Bnd_Box& theret = the_this->BoundingBox();
-thejret = jcas_CreateObject(env,"CASCADESamplesJni/Bnd_Box",&theret,0);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jshort JNICALL Java_CASCADESamplesJni_AIS_1Shape_AIS_1Shape_1Color_11 (JNIEnv *env, jobject theobj)
-{
-jshort thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_Shape) the_this = *((Handle(AIS_Shape)*) jcas_GetHandle(env,theobj));
- thejret = the_this->Color();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_AIS_1Shape_AIS_1Shape_1Color_12 (JNIEnv *env, jobject theobj, jobject aColor)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Quantity_Color* the_aColor = (Quantity_Color*) jcas_GetHandle(env,aColor);
-if ( the_aColor == NULL ) {
-
- // The following assumes availability of the default constructor (what may not
- // always be the case). Therefore explicit exception is thrown if the null
- // object has been passed.
- // the_aColor = new Quantity_Color ();
- // jcas_SetHandle ( env, aColor, the_aColor );
- jcas_ThrowException (env, "NULL object has been passed while expecting an object manipulated by value");
-
-} // end if
-Handle(AIS_Shape) the_this = *((Handle(AIS_Shape)*) jcas_GetHandle(env,theobj));
-the_this->Color(*the_aColor);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jshort JNICALL Java_CASCADESamplesJni_AIS_1Shape_Material (JNIEnv *env, jobject theobj)
-{
-jshort thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_Shape) the_this = *((Handle(AIS_Shape)*) jcas_GetHandle(env,theobj));
- thejret = the_this->Material();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jdouble JNICALL Java_CASCADESamplesJni_AIS_1Shape_Transparency (JNIEnv *env, jobject theobj)
-{
-jdouble thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(AIS_Shape) the_this = *((Handle(AIS_Shape)*) jcas_GetHandle(env,theobj));
- thejret = the_this->Transparency();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jshort JNICALL Java_CASCADESamplesJni_AIS_1Shape_SelectionType (JNIEnv *env, jclass, jint aDecompositionMode)
-{
-jshort thejret;
-
-jcas_Locking alock(env);
-{
-try {
- thejret = AIS_Shape::SelectionType((Standard_Integer) aDecompositionMode);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jint JNICALL Java_CASCADESamplesJni_AIS_1Shape_SelectionMode (JNIEnv *env, jclass, jshort aShapeType)
-{
-jint thejret;
-
-jcas_Locking alock(env);
-{
-try {
- thejret = AIS_Shape::SelectionMode((TopAbs_ShapeEnum) aShapeType);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jdouble JNICALL Java_CASCADESamplesJni_AIS_1Shape_GetDeflection (JNIEnv *env, jclass, jobject aShape, jobject aDrawer)
-{
-jdouble thejret;
-
-jcas_Locking alock(env);
-{
-try {
-TopoDS_Shape* the_aShape = (TopoDS_Shape*) jcas_GetHandle(env,aShape);
-if ( the_aShape == NULL ) {
-
- // The following assumes availability of the default constructor (what may not
- // always be the case). Therefore explicit exception is thrown if the null
- // object has been passed.
- // the_aShape = new TopoDS_Shape ();
- // jcas_SetHandle ( env, aShape, the_aShape );
- jcas_ThrowException (env, "NULL object has been passed while expecting an object manipulated by value");
-
-} // end if
- Handle( Prs3d_Drawer ) the_aDrawer;
- void* ptr_aDrawer = jcas_GetHandle(env,aDrawer);
-
- if ( ptr_aDrawer != NULL ) the_aDrawer = *( ( Handle( Prs3d_Drawer )* )ptr_aDrawer );
-
- thejret = AIS_Shape::GetDeflection(*the_aShape,the_aDrawer);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-}
diff --git a/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_AspectMarker_java.cxx b/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_AspectMarker_java.cxx
deleted file mode 100755
index dd574364b9..0000000000
--- a/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_AspectMarker_java.cxx
+++ /dev/null
@@ -1,33 +0,0 @@
-//
-// Copyright (C) 1991 - 2000 by
-// Matra Datavision SA. All rights reserved.
-//
-// Copyright (C) 2001 - 2004 by
-// Open CASCADE SA. All rights reserved.
-//
-// This file is part of the Open CASCADE Technology software.
-//
-// This software may be distributed and/or modified under the terms and
-// conditions of the Open CASCADE Public License as defined by Open CASCADE SA
-// and appearing in the file LICENSE included in the packaging of this file.
-//
-// This software is distributed on an "AS IS" basis, without warranty of any
-// kind, and Open CASCADE SA hereby disclaims all such warranties,
-// including without limitation, any warranties of merchantability, fitness
-// for a particular purpose or non-infringement. Please see the License for
-// the specific terms and conditions governing rights and limitations under the
-// License.
-
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-
-
-
-extern "C" {
-
-}
diff --git a/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_Background_java.cxx b/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_Background_java.cxx
deleted file mode 100755
index e1d69aee24..0000000000
--- a/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_Background_java.cxx
+++ /dev/null
@@ -1,43 +0,0 @@
-//
-// Copyright (C) 1991 - 2000 by
-// Matra Datavision SA. All rights reserved.
-//
-// Copyright (C) 2001 - 2004 by
-// Open CASCADE SA. All rights reserved.
-//
-// This file is part of the Open CASCADE Technology software.
-//
-// This software may be distributed and/or modified under the terms and
-// conditions of the Open CASCADE Public License as defined by Open CASCADE SA
-// and appearing in the file LICENSE included in the packaging of this file.
-//
-// This software is distributed on an "AS IS" basis, without warranty of any
-// kind, and Open CASCADE SA hereby disclaims all such warranties,
-// including without limitation, any warranties of merchantability, fitness
-// for a particular purpose or non-infringement. Please see the License for
-// the specific terms and conditions governing rights and limitations under the
-// License.
-
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-
-
-
-extern "C" {
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1Background_FinalizeValue(JNIEnv *, jclass, jlong theid)
-{
-if (theid) {
- Aspect_Background* theobj = (Aspect_Background*) theid;
- delete theobj;
-}
-}
-
-
-}
diff --git a/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_ColorMapEntry_java.cxx b/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_ColorMapEntry_java.cxx
deleted file mode 100755
index ef134af155..0000000000
--- a/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_ColorMapEntry_java.cxx
+++ /dev/null
@@ -1,323 +0,0 @@
-// Copyright (C) 1991,1995 by
-//
-// MATRA DATAVISION, FRANCE
-//
-// This software is furnished in accordance with the terms and conditions
-// of the contract and with the inclusion of the above copyright notice.
-// This software or any other copy thereof may not be provided or otherwise
-// be made available to any other person. No title to an ownership of the
-// software is hereby transferred.
-//
-// At the termination of the contract, the software and all copies of this
-// software must be deleted.
-
-#include
-#include
-#include
-#include
-#include
-#include
-
-#include
-#include
-#include
-
-
-extern "C" {
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1ColorMapEntry_Aspect_1ColorMapEntry_1Create_11 (JNIEnv *env, jobject theobj)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_ColorMapEntry* theret = new Aspect_ColorMapEntry();
-jcas_SetHandle(env,theobj,theret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1ColorMapEntry_Aspect_1ColorMapEntry_1Create_12 (JNIEnv *env, jobject theobj, jint index, jobject rgb)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Quantity_Color* the_rgb = (Quantity_Color*) jcas_GetHandle(env,rgb);
-Aspect_ColorMapEntry* theret = new Aspect_ColorMapEntry((Standard_Integer) index,*the_rgb);
-jcas_SetHandle(env,theobj,theret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1ColorMapEntry_Aspect_1ColorMapEntry_1Create_13 (JNIEnv *env, jobject theobj, jobject entry)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_ColorMapEntry* the_entry = (Aspect_ColorMapEntry*) jcas_GetHandle(env,entry);
-Aspect_ColorMapEntry* theret = new Aspect_ColorMapEntry(*the_entry);
-jcas_SetHandle(env,theobj,theret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1ColorMapEntry_Aspect_1ColorMapEntry_1SetValue_11 (JNIEnv *env, jobject theobj, jint index, jobject rgb)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Quantity_Color* the_rgb = (Quantity_Color*) jcas_GetHandle(env,rgb);
-Aspect_ColorMapEntry* the_this = (Aspect_ColorMapEntry*) jcas_GetHandle(env,theobj);
-the_this->SetValue((Standard_Integer) index,*the_rgb);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1ColorMapEntry_Aspect_1ColorMapEntry_1SetValue_12 (JNIEnv *env, jobject theobj, jobject entry)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_ColorMapEntry* the_entry = (Aspect_ColorMapEntry*) jcas_GetHandle(env,entry);
-Aspect_ColorMapEntry* the_this = (Aspect_ColorMapEntry*) jcas_GetHandle(env,theobj);
-the_this->SetValue(*the_entry);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1ColorMapEntry_SetColor (JNIEnv *env, jobject theobj, jobject rgb)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Quantity_Color* the_rgb = (Quantity_Color*) jcas_GetHandle(env,rgb);
-Aspect_ColorMapEntry* the_this = (Aspect_ColorMapEntry*) jcas_GetHandle(env,theobj);
-the_this->SetColor(*the_rgb);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_Aspect_1ColorMapEntry_Color (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_ColorMapEntry* the_this = (Aspect_ColorMapEntry*) jcas_GetHandle(env,theobj);
-const Quantity_Color& theret = the_this->Color();
-thejret = jcas_CreateObject(env,"CASCADESamplesJni/Quantity_Color",&theret,0);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1ColorMapEntry_SetIndex (JNIEnv *env, jobject theobj, jint index)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_ColorMapEntry* the_this = (Aspect_ColorMapEntry*) jcas_GetHandle(env,theobj);
-the_this->SetIndex((Standard_Integer) index);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jint JNICALL Java_CASCADESamplesJni_Aspect_1ColorMapEntry_Index (JNIEnv *env, jobject theobj)
-{
-jint thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_ColorMapEntry* the_this = (Aspect_ColorMapEntry*) jcas_GetHandle(env,theobj);
- thejret = the_this->Index();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1ColorMapEntry_Free (JNIEnv *env, jobject theobj)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_ColorMapEntry* the_this = (Aspect_ColorMapEntry*) jcas_GetHandle(env,theobj);
-the_this->Free();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_Aspect_1ColorMapEntry_IsAllocated (JNIEnv *env, jobject theobj)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_ColorMapEntry* the_this = (Aspect_ColorMapEntry*) jcas_GetHandle(env,theobj);
- thejret = the_this->IsAllocated();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1ColorMapEntry_Dump (JNIEnv *env, jobject theobj)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_ColorMapEntry* the_this = (Aspect_ColorMapEntry*) jcas_GetHandle(env,theobj);
-the_this->Dump();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1ColorMapEntry_FinalizeValue(JNIEnv *, jclass, jlong theid)
-{
-if (theid) {
- Aspect_ColorMapEntry* theobj = (Aspect_ColorMapEntry*) theid;
- delete theobj;
-}
-}
-
-
-}
diff --git a/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_ColorMap_java.cxx b/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_ColorMap_java.cxx
deleted file mode 100755
index 6e2b10eef0..0000000000
--- a/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_ColorMap_java.cxx
+++ /dev/null
@@ -1,33 +0,0 @@
-//
-// Copyright (C) 1991 - 2000 by
-// Matra Datavision SA. All rights reserved.
-//
-// Copyright (C) 2001 - 2004 by
-// Open CASCADE SA. All rights reserved.
-//
-// This file is part of the Open CASCADE Technology software.
-//
-// This software may be distributed and/or modified under the terms and
-// conditions of the Open CASCADE Public License as defined by Open CASCADE SA
-// and appearing in the file LICENSE included in the packaging of this file.
-//
-// This software is distributed on an "AS IS" basis, without warranty of any
-// kind, and Open CASCADE SA hereby disclaims all such warranties,
-// including without limitation, any warranties of merchantability, fitness
-// for a particular purpose or non-infringement. Please see the License for
-// the specific terms and conditions governing rights and limitations under the
-// License.
-
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-
-
-
-extern "C" {
-
-}
diff --git a/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_ColorScale_java.cxx b/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_ColorScale_java.cxx
deleted file mode 100755
index 557ac2d1a5..0000000000
--- a/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_ColorScale_java.cxx
+++ /dev/null
@@ -1,33 +0,0 @@
-//
-// Copyright (C) 1991 - 2000 by
-// Matra Datavision SA. All rights reserved.
-//
-// Copyright (C) 2001 - 2004 by
-// Open CASCADE SA. All rights reserved.
-//
-// This file is part of the Open CASCADE Technology software.
-//
-// This software may be distributed and/or modified under the terms and
-// conditions of the Open CASCADE Public License as defined by Open CASCADE SA
-// and appearing in the file LICENSE included in the packaging of this file.
-//
-// This software is distributed on an "AS IS" basis, without warranty of any
-// kind, and Open CASCADE SA hereby disclaims all such warranties,
-// including without limitation, any warranties of merchantability, fitness
-// for a particular purpose or non-infringement. Please see the License for
-// the specific terms and conditions governing rights and limitations under the
-// License.
-
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-
-
-
-extern "C" {
-
-}
diff --git a/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_Driver_java.cxx b/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_Driver_java.cxx
deleted file mode 100755
index fa5d12a578..0000000000
--- a/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_Driver_java.cxx
+++ /dev/null
@@ -1,33 +0,0 @@
-//
-// Copyright (C) 1991 - 2000 by
-// Matra Datavision SA. All rights reserved.
-//
-// Copyright (C) 2001 - 2004 by
-// Open CASCADE SA. All rights reserved.
-//
-// This file is part of the Open CASCADE Technology software.
-//
-// This software may be distributed and/or modified under the terms and
-// conditions of the Open CASCADE Public License as defined by Open CASCADE SA
-// and appearing in the file LICENSE included in the packaging of this file.
-//
-// This software is distributed on an "AS IS" basis, without warranty of any
-// kind, and Open CASCADE SA hereby disclaims all such warranties,
-// including without limitation, any warranties of merchantability, fitness
-// for a particular purpose or non-infringement. Please see the License for
-// the specific terms and conditions governing rights and limitations under the
-// License.
-
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-
-
-
-extern "C" {
-
-}
diff --git a/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_FontMapEntry_java.cxx b/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_FontMapEntry_java.cxx
deleted file mode 100755
index 92e158e73b..0000000000
--- a/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_FontMapEntry_java.cxx
+++ /dev/null
@@ -1,323 +0,0 @@
-// Copyright (C) 1991,1995 by
-//
-// MATRA DATAVISION, FRANCE
-//
-// This software is furnished in accordance with the terms and conditions
-// of the contract and with the inclusion of the above copyright notice.
-// This software or any other copy thereof may not be provided or otherwise
-// be made available to any other person. No title to an ownership of the
-// software is hereby transferred.
-//
-// At the termination of the contract, the software and all copies of this
-// software must be deleted.
-
-#include
-#include
-#include
-#include
-#include
-#include
-
-#include
-#include
-#include
-
-
-extern "C" {
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1FontMapEntry_Aspect_1FontMapEntry_1Create_11 (JNIEnv *env, jobject theobj)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_FontMapEntry* theret = new Aspect_FontMapEntry();
-jcas_SetHandle(env,theobj,theret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1FontMapEntry_Aspect_1FontMapEntry_1Create_12 (JNIEnv *env, jobject theobj, jint index, jobject style)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_FontStyle* the_style = (Aspect_FontStyle*) jcas_GetHandle(env,style);
-Aspect_FontMapEntry* theret = new Aspect_FontMapEntry((Standard_Integer) index,*the_style);
-jcas_SetHandle(env,theobj,theret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1FontMapEntry_Aspect_1FontMapEntry_1Create_13 (JNIEnv *env, jobject theobj, jobject entry)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_FontMapEntry* the_entry = (Aspect_FontMapEntry*) jcas_GetHandle(env,entry);
-Aspect_FontMapEntry* theret = new Aspect_FontMapEntry(*the_entry);
-jcas_SetHandle(env,theobj,theret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1FontMapEntry_Aspect_1FontMapEntry_1SetValue_11 (JNIEnv *env, jobject theobj, jint index, jobject style)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_FontStyle* the_style = (Aspect_FontStyle*) jcas_GetHandle(env,style);
-Aspect_FontMapEntry* the_this = (Aspect_FontMapEntry*) jcas_GetHandle(env,theobj);
-the_this->SetValue((Standard_Integer) index,*the_style);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1FontMapEntry_Aspect_1FontMapEntry_1SetValue_12 (JNIEnv *env, jobject theobj, jobject entry)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_FontMapEntry* the_entry = (Aspect_FontMapEntry*) jcas_GetHandle(env,entry);
-Aspect_FontMapEntry* the_this = (Aspect_FontMapEntry*) jcas_GetHandle(env,theobj);
-the_this->SetValue(*the_entry);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1FontMapEntry_SetType (JNIEnv *env, jobject theobj, jobject Style)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_FontStyle* the_Style = (Aspect_FontStyle*) jcas_GetHandle(env,Style);
-Aspect_FontMapEntry* the_this = (Aspect_FontMapEntry*) jcas_GetHandle(env,theobj);
-the_this->SetType(*the_Style);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_Aspect_1FontMapEntry_Type (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_FontMapEntry* the_this = (Aspect_FontMapEntry*) jcas_GetHandle(env,theobj);
-const Aspect_FontStyle& theret = the_this->Type();
-thejret = jcas_CreateObject(env,"CASCADESamplesJni/Aspect_FontStyle",&theret,0);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1FontMapEntry_SetIndex (JNIEnv *env, jobject theobj, jint index)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_FontMapEntry* the_this = (Aspect_FontMapEntry*) jcas_GetHandle(env,theobj);
-the_this->SetIndex((Standard_Integer) index);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jint JNICALL Java_CASCADESamplesJni_Aspect_1FontMapEntry_Index (JNIEnv *env, jobject theobj)
-{
-jint thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_FontMapEntry* the_this = (Aspect_FontMapEntry*) jcas_GetHandle(env,theobj);
- thejret = the_this->Index();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1FontMapEntry_Free (JNIEnv *env, jobject theobj)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_FontMapEntry* the_this = (Aspect_FontMapEntry*) jcas_GetHandle(env,theobj);
-the_this->Free();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_Aspect_1FontMapEntry_IsAllocated (JNIEnv *env, jobject theobj)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_FontMapEntry* the_this = (Aspect_FontMapEntry*) jcas_GetHandle(env,theobj);
- thejret = the_this->IsAllocated();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1FontMapEntry_Dump (JNIEnv *env, jobject theobj)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_FontMapEntry* the_this = (Aspect_FontMapEntry*) jcas_GetHandle(env,theobj);
-the_this->Dump();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1FontMapEntry_FinalizeValue(JNIEnv *, jclass, jlong theid)
-{
-if (theid) {
- Aspect_FontMapEntry* theobj = (Aspect_FontMapEntry*) theid;
- delete theobj;
-}
-}
-
-
-}
diff --git a/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_FontMap_java.cxx b/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_FontMap_java.cxx
deleted file mode 100755
index 02e03bc025..0000000000
--- a/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_FontMap_java.cxx
+++ /dev/null
@@ -1,33 +0,0 @@
-//
-// Copyright (C) 1991 - 2000 by
-// Matra Datavision SA. All rights reserved.
-//
-// Copyright (C) 2001 - 2004 by
-// Open CASCADE SA. All rights reserved.
-//
-// This file is part of the Open CASCADE Technology software.
-//
-// This software may be distributed and/or modified under the terms and
-// conditions of the Open CASCADE Public License as defined by Open CASCADE SA
-// and appearing in the file LICENSE included in the packaging of this file.
-//
-// This software is distributed on an "AS IS" basis, without warranty of any
-// kind, and Open CASCADE SA hereby disclaims all such warranties,
-// including without limitation, any warranties of merchantability, fitness
-// for a particular purpose or non-infringement. Please see the License for
-// the specific terms and conditions governing rights and limitations under the
-// License.
-
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-
-
-
-extern "C" {
-
-}
diff --git a/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_FontStyle_java.cxx b/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_FontStyle_java.cxx
deleted file mode 100755
index 784e877643..0000000000
--- a/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_FontStyle_java.cxx
+++ /dev/null
@@ -1,979 +0,0 @@
-// Copyright (C) 1991,1995 by
-//
-// MATRA DATAVISION, FRANCE
-//
-// This software is furnished in accordance with the terms and conditions
-// of the contract and with the inclusion of the above copyright notice.
-// This software or any other copy thereof may not be provided or otherwise
-// be made available to any other person. No title to an ownership of the
-// software is hereby transferred.
-//
-// At the termination of the contract, the software and all copies of this
-// software must be deleted.
-
-#include
-#include
-#include
-#include
-#include
-#include
-
-#include
-#include
-#include
-#include
-#include
-
-
-extern "C" {
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1FontStyle_Aspect_1FontStyle_1Create_11 (JNIEnv *env, jobject theobj)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_FontStyle* theret = new Aspect_FontStyle();
-jcas_SetHandle(env,theobj,theret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1FontStyle_Aspect_1FontStyle_1Create_12 (JNIEnv *env, jobject theobj, jint Type, jdouble Size, jdouble Slant, jboolean CapsHeight)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_FontStyle* theret = new Aspect_FontStyle((Aspect_TypeOfFont) Type,(Quantity_Length) Size,(Quantity_PlaneAngle) Slant,(Standard_Boolean) CapsHeight);
-jcas_SetHandle(env,theobj,theret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1FontStyle_Aspect_1FontStyle_1Create_13 (JNIEnv *env, jobject theobj, jobject Style, jdouble Size, jdouble Slant, jboolean CapsHeight)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Standard_CString the_Style = jcas_ConvertToCString(env,Style);
-Aspect_FontStyle* theret = new Aspect_FontStyle(the_Style,(Quantity_Length) Size,(Quantity_PlaneAngle) Slant,(Standard_Boolean) CapsHeight);
-jcas_SetHandle(env,theobj,theret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1FontStyle_Aspect_1FontStyle_1Create_14 (JNIEnv *env, jobject theobj, jobject Style)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Standard_CString the_Style = jcas_ConvertToCString(env,Style);
-Aspect_FontStyle* theret = new Aspect_FontStyle(the_Style);
-jcas_SetHandle(env,theobj,theret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_Aspect_1FontStyle_Assign (JNIEnv *env, jobject theobj, jobject Other)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_FontStyle* the_Other = (Aspect_FontStyle*) jcas_GetHandle(env,Other);
-Aspect_FontStyle* the_this = (Aspect_FontStyle*) jcas_GetHandle(env,theobj);
-const Aspect_FontStyle& theret = the_this->Assign(*the_Other);
-thejret = jcas_CreateObject(env,"CASCADESamplesJni/Aspect_FontStyle",&theret,0);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1FontStyle_Aspect_1FontStyle_1SetValues_11 (JNIEnv *env, jobject theobj, jint Type, jdouble Size, jdouble Slant, jboolean CapsHeight)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_FontStyle* the_this = (Aspect_FontStyle*) jcas_GetHandle(env,theobj);
-the_this->SetValues((Aspect_TypeOfFont) Type,(Quantity_Length) Size,(Quantity_PlaneAngle) Slant,(Standard_Boolean) CapsHeight);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1FontStyle_Aspect_1FontStyle_1SetValues_12 (JNIEnv *env, jobject theobj, jobject Style, jdouble Size, jdouble Slant, jboolean CapsHeight)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Standard_CString the_Style = jcas_ConvertToCString(env,Style);
-Aspect_FontStyle* the_this = (Aspect_FontStyle*) jcas_GetHandle(env,theobj);
-the_this->SetValues(the_Style,(Quantity_Length) Size,(Quantity_PlaneAngle) Slant,(Standard_Boolean) CapsHeight);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1FontStyle_Aspect_1FontStyle_1SetValues_13 (JNIEnv *env, jobject theobj, jobject Style)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Standard_CString the_Style = jcas_ConvertToCString(env,Style);
-Aspect_FontStyle* the_this = (Aspect_FontStyle*) jcas_GetHandle(env,theobj);
-the_this->SetValues(the_Style);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1FontStyle_SetFamily (JNIEnv *env, jobject theobj, jobject aName)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Standard_CString the_aName = jcas_ConvertToCString(env,aName);
-Aspect_FontStyle* the_this = (Aspect_FontStyle*) jcas_GetHandle(env,theobj);
-the_this->SetFamily(the_aName);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1FontStyle_SetWeight (JNIEnv *env, jobject theobj, jobject aName)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Standard_CString the_aName = jcas_ConvertToCString(env,aName);
-Aspect_FontStyle* the_this = (Aspect_FontStyle*) jcas_GetHandle(env,theobj);
-the_this->SetWeight(the_aName);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1FontStyle_SetRegistry (JNIEnv *env, jobject theobj, jobject aName)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Standard_CString the_aName = jcas_ConvertToCString(env,aName);
-Aspect_FontStyle* the_this = (Aspect_FontStyle*) jcas_GetHandle(env,theobj);
-the_this->SetRegistry(the_aName);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1FontStyle_SetEncoding (JNIEnv *env, jobject theobj, jobject aName)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Standard_CString the_aName = jcas_ConvertToCString(env,aName);
-Aspect_FontStyle* the_this = (Aspect_FontStyle*) jcas_GetHandle(env,theobj);
-the_this->SetEncoding(the_aName);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jint JNICALL Java_CASCADESamplesJni_Aspect_1FontStyle_Style (JNIEnv *env, jobject theobj)
-{
-jint thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_FontStyle* the_this = (Aspect_FontStyle*) jcas_GetHandle(env,theobj);
- thejret = the_this->Style();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jint JNICALL Java_CASCADESamplesJni_Aspect_1FontStyle_Length (JNIEnv *env, jobject theobj)
-{
-jint thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_FontStyle* the_this = (Aspect_FontStyle*) jcas_GetHandle(env,theobj);
- thejret = the_this->Length();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_Aspect_1FontStyle_Value (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_FontStyle* the_this = (Aspect_FontStyle*) jcas_GetHandle(env,theobj);
-Standard_CString sret = the_this->Value();
-jclass CLSret = env->FindClass("jcas/Standard_CString");
-thejret = env->AllocObject(CLSret);
-jcas_SetCStringValue(env,thejret,sret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jdouble JNICALL Java_CASCADESamplesJni_Aspect_1FontStyle_Size (JNIEnv *env, jobject theobj)
-{
-jdouble thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_FontStyle* the_this = (Aspect_FontStyle*) jcas_GetHandle(env,theobj);
- thejret = the_this->Size();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jdouble JNICALL Java_CASCADESamplesJni_Aspect_1FontStyle_Slant (JNIEnv *env, jobject theobj)
-{
-jdouble thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_FontStyle* the_this = (Aspect_FontStyle*) jcas_GetHandle(env,theobj);
- thejret = the_this->Slant();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_Aspect_1FontStyle_CapsHeight (JNIEnv *env, jobject theobj)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_FontStyle* the_this = (Aspect_FontStyle*) jcas_GetHandle(env,theobj);
- thejret = the_this->CapsHeight();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_Aspect_1FontStyle_AliasName (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_FontStyle* the_this = (Aspect_FontStyle*) jcas_GetHandle(env,theobj);
-Standard_CString sret = the_this->AliasName();
-jclass CLSret = env->FindClass("jcas/Standard_CString");
-thejret = env->AllocObject(CLSret);
-jcas_SetCStringValue(env,thejret,sret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_Aspect_1FontStyle_FullName (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_FontStyle* the_this = (Aspect_FontStyle*) jcas_GetHandle(env,theobj);
-Standard_CString sret = the_this->FullName();
-jclass CLSret = env->FindClass("jcas/Standard_CString");
-thejret = env->AllocObject(CLSret);
-jcas_SetCStringValue(env,thejret,sret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_Aspect_1FontStyle_Foundry (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_FontStyle* the_this = (Aspect_FontStyle*) jcas_GetHandle(env,theobj);
-Standard_CString sret = the_this->Foundry();
-jclass CLSret = env->FindClass("jcas/Standard_CString");
-thejret = env->AllocObject(CLSret);
-jcas_SetCStringValue(env,thejret,sret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_Aspect_1FontStyle_Family (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_FontStyle* the_this = (Aspect_FontStyle*) jcas_GetHandle(env,theobj);
-Standard_CString sret = the_this->Family();
-jclass CLSret = env->FindClass("jcas/Standard_CString");
-thejret = env->AllocObject(CLSret);
-jcas_SetCStringValue(env,thejret,sret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_Aspect_1FontStyle_Weight (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_FontStyle* the_this = (Aspect_FontStyle*) jcas_GetHandle(env,theobj);
-Standard_CString sret = the_this->Weight();
-jclass CLSret = env->FindClass("jcas/Standard_CString");
-thejret = env->AllocObject(CLSret);
-jcas_SetCStringValue(env,thejret,sret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_Aspect_1FontStyle_Registry (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_FontStyle* the_this = (Aspect_FontStyle*) jcas_GetHandle(env,theobj);
-Standard_CString sret = the_this->Registry();
-jclass CLSret = env->FindClass("jcas/Standard_CString");
-thejret = env->AllocObject(CLSret);
-jcas_SetCStringValue(env,thejret,sret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_Aspect_1FontStyle_Encoding (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_FontStyle* the_this = (Aspect_FontStyle*) jcas_GetHandle(env,theobj);
-Standard_CString sret = the_this->Encoding();
-jclass CLSret = env->FindClass("jcas/Standard_CString");
-thejret = env->AllocObject(CLSret);
-jcas_SetCStringValue(env,thejret,sret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_Aspect_1FontStyle_SSlant (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_FontStyle* the_this = (Aspect_FontStyle*) jcas_GetHandle(env,theobj);
-Standard_CString sret = the_this->SSlant();
-jclass CLSret = env->FindClass("jcas/Standard_CString");
-thejret = env->AllocObject(CLSret);
-jcas_SetCStringValue(env,thejret,sret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_Aspect_1FontStyle_SWidth (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_FontStyle* the_this = (Aspect_FontStyle*) jcas_GetHandle(env,theobj);
-Standard_CString sret = the_this->SWidth();
-jclass CLSret = env->FindClass("jcas/Standard_CString");
-thejret = env->AllocObject(CLSret);
-jcas_SetCStringValue(env,thejret,sret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_Aspect_1FontStyle_SStyle (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_FontStyle* the_this = (Aspect_FontStyle*) jcas_GetHandle(env,theobj);
-Standard_CString sret = the_this->SStyle();
-jclass CLSret = env->FindClass("jcas/Standard_CString");
-thejret = env->AllocObject(CLSret);
-jcas_SetCStringValue(env,thejret,sret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_Aspect_1FontStyle_SPixelSize (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_FontStyle* the_this = (Aspect_FontStyle*) jcas_GetHandle(env,theobj);
-Standard_CString sret = the_this->SPixelSize();
-jclass CLSret = env->FindClass("jcas/Standard_CString");
-thejret = env->AllocObject(CLSret);
-jcas_SetCStringValue(env,thejret,sret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_Aspect_1FontStyle_SPointSize (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_FontStyle* the_this = (Aspect_FontStyle*) jcas_GetHandle(env,theobj);
-Standard_CString sret = the_this->SPointSize();
-jclass CLSret = env->FindClass("jcas/Standard_CString");
-thejret = env->AllocObject(CLSret);
-jcas_SetCStringValue(env,thejret,sret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_Aspect_1FontStyle_SResolutionX (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_FontStyle* the_this = (Aspect_FontStyle*) jcas_GetHandle(env,theobj);
-Standard_CString sret = the_this->SResolutionX();
-jclass CLSret = env->FindClass("jcas/Standard_CString");
-thejret = env->AllocObject(CLSret);
-jcas_SetCStringValue(env,thejret,sret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_Aspect_1FontStyle_SResolutionY (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_FontStyle* the_this = (Aspect_FontStyle*) jcas_GetHandle(env,theobj);
-Standard_CString sret = the_this->SResolutionY();
-jclass CLSret = env->FindClass("jcas/Standard_CString");
-thejret = env->AllocObject(CLSret);
-jcas_SetCStringValue(env,thejret,sret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_Aspect_1FontStyle_SSpacing (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_FontStyle* the_this = (Aspect_FontStyle*) jcas_GetHandle(env,theobj);
-Standard_CString sret = the_this->SSpacing();
-jclass CLSret = env->FindClass("jcas/Standard_CString");
-thejret = env->AllocObject(CLSret);
-jcas_SetCStringValue(env,thejret,sret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_Aspect_1FontStyle_SAverageWidth (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_FontStyle* the_this = (Aspect_FontStyle*) jcas_GetHandle(env,theobj);
-Standard_CString sret = the_this->SAverageWidth();
-jclass CLSret = env->FindClass("jcas/Standard_CString");
-thejret = env->AllocObject(CLSret);
-jcas_SetCStringValue(env,thejret,sret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1FontStyle_Dump (JNIEnv *env, jobject theobj)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_FontStyle* the_this = (Aspect_FontStyle*) jcas_GetHandle(env,theobj);
-the_this->Dump();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_Aspect_1FontStyle_IsEqual (JNIEnv *env, jobject theobj, jobject Other)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_FontStyle* the_Other = (Aspect_FontStyle*) jcas_GetHandle(env,Other);
-Aspect_FontStyle* the_this = (Aspect_FontStyle*) jcas_GetHandle(env,theobj);
- thejret = the_this->IsEqual(*the_Other);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_Aspect_1FontStyle_IsNotEqual (JNIEnv *env, jobject theobj, jobject Other)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_FontStyle* the_Other = (Aspect_FontStyle*) jcas_GetHandle(env,Other);
-Aspect_FontStyle* the_this = (Aspect_FontStyle*) jcas_GetHandle(env,theobj);
- thejret = the_this->IsNotEqual(*the_Other);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1FontStyle_FinalizeValue(JNIEnv *, jclass, jlong theid)
-{
-if (theid) {
- Aspect_FontStyle* theobj = (Aspect_FontStyle*) theid;
- delete theobj;
-}
-}
-
-
-}
diff --git a/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_GenericColorMap_java.cxx b/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_GenericColorMap_java.cxx
deleted file mode 100755
index 724fc344aa..0000000000
--- a/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_GenericColorMap_java.cxx
+++ /dev/null
@@ -1,224 +0,0 @@
-// Copyright (C) 1991,1995 by
-//
-// MATRA DATAVISION, FRANCE
-//
-// This software is furnished in accordance with the terms and conditions
-// of the contract and with the inclusion of the above copyright notice.
-// This software or any other copy thereof may not be provided or otherwise
-// be made available to any other person. No title to an ownership of the
-// software is hereby transferred.
-//
-// At the termination of the contract, the software and all copies of this
-// software must be deleted.
-
-#include
-#include
-#include
-#include
-#include
-#include
-
-#include
-#include
-#include
-
-
-extern "C" {
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1GenericColorMap_Aspect_1GenericColorMap_1Create_10 (JNIEnv *env, jobject theobj)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(Aspect_GenericColorMap)* theret = new Handle(Aspect_GenericColorMap);
-*theret = new Aspect_GenericColorMap();
-jcas_SetHandle(env,theobj,theret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1GenericColorMap_Aspect_1GenericColorMap_1AddEntry_11 (JNIEnv *env, jobject theobj, jobject AnEntry)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_ColorMapEntry* the_AnEntry = (Aspect_ColorMapEntry*) jcas_GetHandle(env,AnEntry);
-Handle(Aspect_GenericColorMap) the_this = *((Handle(Aspect_GenericColorMap)*) jcas_GetHandle(env,theobj));
-the_this->AddEntry(*the_AnEntry);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jint JNICALL Java_CASCADESamplesJni_Aspect_1GenericColorMap_Aspect_1GenericColorMap_1AddEntry_12 (JNIEnv *env, jobject theobj, jobject aColor)
-{
-jint thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Quantity_Color* the_aColor = (Quantity_Color*) jcas_GetHandle(env,aColor);
-Handle(Aspect_GenericColorMap) the_this = *((Handle(Aspect_GenericColorMap)*) jcas_GetHandle(env,theobj));
- thejret = the_this->AddEntry(*the_aColor);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1GenericColorMap_RemoveEntry (JNIEnv *env, jobject theobj, jint AColorMapEntryIndex)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(Aspect_GenericColorMap) the_this = *((Handle(Aspect_GenericColorMap)*) jcas_GetHandle(env,theobj));
-the_this->RemoveEntry((Standard_Integer) AColorMapEntryIndex);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jint JNICALL Java_CASCADESamplesJni_Aspect_1GenericColorMap_FindColorMapIndex (JNIEnv *env, jobject theobj, jint AColorMapEntryIndex)
-{
-jint thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(Aspect_GenericColorMap) the_this = *((Handle(Aspect_GenericColorMap)*) jcas_GetHandle(env,theobj));
- thejret = the_this->FindColorMapIndex((Standard_Integer) AColorMapEntryIndex);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_Aspect_1GenericColorMap_FindEntry (JNIEnv *env, jobject theobj, jint AColorMapEntryIndex)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(Aspect_GenericColorMap) the_this = *((Handle(Aspect_GenericColorMap)*) jcas_GetHandle(env,theobj));
-const Aspect_ColorMapEntry& theret = the_this->FindEntry((Standard_Integer) AColorMapEntryIndex);
-thejret = jcas_CreateObject(env,"CASCADESamplesJni/Aspect_ColorMapEntry",&theret,0);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jint JNICALL Java_CASCADESamplesJni_Aspect_1GenericColorMap_NearestColorMapIndex (JNIEnv *env, jobject theobj, jobject aColor)
-{
-jint thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Quantity_Color* the_aColor = (Quantity_Color*) jcas_GetHandle(env,aColor);
-Handle(Aspect_GenericColorMap) the_this = *((Handle(Aspect_GenericColorMap)*) jcas_GetHandle(env,theobj));
- thejret = the_this->NearestColorMapIndex(*the_aColor);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_Aspect_1GenericColorMap_NearestEntry (JNIEnv *env, jobject theobj, jobject aColor)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Quantity_Color* the_aColor = (Quantity_Color*) jcas_GetHandle(env,aColor);
-Handle(Aspect_GenericColorMap) the_this = *((Handle(Aspect_GenericColorMap)*) jcas_GetHandle(env,theobj));
-const Aspect_ColorMapEntry& theret = the_this->NearestEntry(*the_aColor);
-thejret = jcas_CreateObject(env,"CASCADESamplesJni/Aspect_ColorMapEntry",&theret,0);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-}
diff --git a/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_GraphicDevice_java.cxx b/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_GraphicDevice_java.cxx
deleted file mode 100755
index 53a627a60f..0000000000
--- a/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_GraphicDevice_java.cxx
+++ /dev/null
@@ -1,33 +0,0 @@
-//
-// Copyright (C) 1991 - 2000 by
-// Matra Datavision SA. All rights reserved.
-//
-// Copyright (C) 2001 - 2004 by
-// Open CASCADE SA. All rights reserved.
-//
-// This file is part of the Open CASCADE Technology software.
-//
-// This software may be distributed and/or modified under the terms and
-// conditions of the Open CASCADE Public License as defined by Open CASCADE SA
-// and appearing in the file LICENSE included in the packaging of this file.
-//
-// This software is distributed on an "AS IS" basis, without warranty of any
-// kind, and Open CASCADE SA hereby disclaims all such warranties,
-// including without limitation, any warranties of merchantability, fitness
-// for a particular purpose or non-infringement. Please see the License for
-// the specific terms and conditions governing rights and limitations under the
-// License.
-
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-
-
-
-extern "C" {
-
-}
diff --git a/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_Grid_java.cxx b/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_Grid_java.cxx
deleted file mode 100755
index f0de30d5c2..0000000000
--- a/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_Grid_java.cxx
+++ /dev/null
@@ -1,33 +0,0 @@
-//
-// Copyright (C) 1991 - 2000 by
-// Matra Datavision SA. All rights reserved.
-//
-// Copyright (C) 2001 - 2004 by
-// Open CASCADE SA. All rights reserved.
-//
-// This file is part of the Open CASCADE Technology software.
-//
-// This software may be distributed and/or modified under the terms and
-// conditions of the Open CASCADE Public License as defined by Open CASCADE SA
-// and appearing in the file LICENSE included in the packaging of this file.
-//
-// This software is distributed on an "AS IS" basis, without warranty of any
-// kind, and Open CASCADE SA hereby disclaims all such warranties,
-// including without limitation, any warranties of merchantability, fitness
-// for a particular purpose or non-infringement. Please see the License for
-// the specific terms and conditions governing rights and limitations under the
-// License.
-
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-
-
-
-extern "C" {
-
-}
diff --git a/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_LineStyle_java.cxx b/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_LineStyle_java.cxx
deleted file mode 100755
index 7d49145907..0000000000
--- a/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_LineStyle_java.cxx
+++ /dev/null
@@ -1,305 +0,0 @@
-// Copyright (C) 1991,1995 by
-//
-// MATRA DATAVISION, FRANCE
-//
-// This software is furnished in accordance with the terms and conditions
-// of the contract and with the inclusion of the above copyright notice.
-// This software or any other copy thereof may not be provided or otherwise
-// be made available to any other person. No title to an ownership of the
-// software is hereby transferred.
-//
-// At the termination of the contract, the software and all copies of this
-// software must be deleted.
-
-#include
-#include
-#include
-#include
-#include
-#include
-
-#include
-#include
-#include
-#include
-
-
-extern "C" {
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1LineStyle_Aspect_1LineStyle_1Create_11 (JNIEnv *env, jobject theobj)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_LineStyle* theret = new Aspect_LineStyle();
-jcas_SetHandle(env,theobj,theret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1LineStyle_Aspect_1LineStyle_1Create_12 (JNIEnv *env, jobject theobj, jint Type)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_LineStyle* theret = new Aspect_LineStyle((Aspect_TypeOfLine) Type);
-jcas_SetHandle(env,theobj,theret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1LineStyle_Aspect_1LineStyle_1Create_13 (JNIEnv *env, jobject theobj, jobject Style)
-{
-
-jcas_Locking alock(env);
-{
-try {
-TColQuantity_Array1OfLength* the_Style = (TColQuantity_Array1OfLength*) jcas_GetHandle(env,Style);
-Aspect_LineStyle* theret = new Aspect_LineStyle(*the_Style);
-jcas_SetHandle(env,theobj,theret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_Aspect_1LineStyle_Assign (JNIEnv *env, jobject theobj, jobject Other)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_LineStyle* the_Other = (Aspect_LineStyle*) jcas_GetHandle(env,Other);
-Aspect_LineStyle* the_this = (Aspect_LineStyle*) jcas_GetHandle(env,theobj);
-const Aspect_LineStyle& theret = the_this->Assign(*the_Other);
-thejret = jcas_CreateObject(env,"CASCADESamplesJni/Aspect_LineStyle",&theret,0);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1LineStyle_Aspect_1LineStyle_1SetValues_11 (JNIEnv *env, jobject theobj, jint Type)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_LineStyle* the_this = (Aspect_LineStyle*) jcas_GetHandle(env,theobj);
-the_this->SetValues((Aspect_TypeOfLine) Type);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1LineStyle_Aspect_1LineStyle_1SetValues_12 (JNIEnv *env, jobject theobj, jobject Style)
-{
-
-jcas_Locking alock(env);
-{
-try {
-TColQuantity_Array1OfLength* the_Style = (TColQuantity_Array1OfLength*) jcas_GetHandle(env,Style);
-Aspect_LineStyle* the_this = (Aspect_LineStyle*) jcas_GetHandle(env,theobj);
-the_this->SetValues(*the_Style);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jint JNICALL Java_CASCADESamplesJni_Aspect_1LineStyle_Style (JNIEnv *env, jobject theobj)
-{
-jint thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_LineStyle* the_this = (Aspect_LineStyle*) jcas_GetHandle(env,theobj);
- thejret = the_this->Style();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jint JNICALL Java_CASCADESamplesJni_Aspect_1LineStyle_Length (JNIEnv *env, jobject theobj)
-{
-jint thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_LineStyle* the_this = (Aspect_LineStyle*) jcas_GetHandle(env,theobj);
- thejret = the_this->Length();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_Aspect_1LineStyle_Values (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_LineStyle* the_this = (Aspect_LineStyle*) jcas_GetHandle(env,theobj);
-const TColQuantity_Array1OfLength& theret = the_this->Values();
-thejret = jcas_CreateObject(env,"CASCADESamplesJni/TColQuantity_Array1OfLength",&theret,0);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_Aspect_1LineStyle_IsEqual (JNIEnv *env, jobject theobj, jobject Other)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_LineStyle* the_Other = (Aspect_LineStyle*) jcas_GetHandle(env,Other);
-Aspect_LineStyle* the_this = (Aspect_LineStyle*) jcas_GetHandle(env,theobj);
- thejret = the_this->IsEqual(*the_Other);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_Aspect_1LineStyle_IsNotEqual (JNIEnv *env, jobject theobj, jobject Other)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_LineStyle* the_Other = (Aspect_LineStyle*) jcas_GetHandle(env,Other);
-Aspect_LineStyle* the_this = (Aspect_LineStyle*) jcas_GetHandle(env,theobj);
- thejret = the_this->IsNotEqual(*the_Other);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1LineStyle_FinalizeValue(JNIEnv *, jclass, jlong theid)
-{
-if (theid) {
- Aspect_LineStyle* theobj = (Aspect_LineStyle*) theid;
- delete theobj;
-}
-}
-
-
-}
diff --git a/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_MarkMapEntry_java.cxx b/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_MarkMapEntry_java.cxx
deleted file mode 100755
index 34dc56a643..0000000000
--- a/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_MarkMapEntry_java.cxx
+++ /dev/null
@@ -1,323 +0,0 @@
-// Copyright (C) 1991,1995 by
-//
-// MATRA DATAVISION, FRANCE
-//
-// This software is furnished in accordance with the terms and conditions
-// of the contract and with the inclusion of the above copyright notice.
-// This software or any other copy thereof may not be provided or otherwise
-// be made available to any other person. No title to an ownership of the
-// software is hereby transferred.
-//
-// At the termination of the contract, the software and all copies of this
-// software must be deleted.
-
-#include
-#include
-#include
-#include
-#include
-#include
-
-#include
-#include
-#include
-
-
-extern "C" {
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1MarkMapEntry_Aspect_1MarkMapEntry_1Create_11 (JNIEnv *env, jobject theobj)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_MarkMapEntry* theret = new Aspect_MarkMapEntry();
-jcas_SetHandle(env,theobj,theret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1MarkMapEntry_Aspect_1MarkMapEntry_1Create_12 (JNIEnv *env, jobject theobj, jint index, jobject style)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_MarkerStyle* the_style = (Aspect_MarkerStyle*) jcas_GetHandle(env,style);
-Aspect_MarkMapEntry* theret = new Aspect_MarkMapEntry((Standard_Integer) index,*the_style);
-jcas_SetHandle(env,theobj,theret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1MarkMapEntry_Aspect_1MarkMapEntry_1Create_13 (JNIEnv *env, jobject theobj, jobject entry)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_MarkMapEntry* the_entry = (Aspect_MarkMapEntry*) jcas_GetHandle(env,entry);
-Aspect_MarkMapEntry* theret = new Aspect_MarkMapEntry(*the_entry);
-jcas_SetHandle(env,theobj,theret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1MarkMapEntry_Aspect_1MarkMapEntry_1SetValue_11 (JNIEnv *env, jobject theobj, jint index, jobject style)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_MarkerStyle* the_style = (Aspect_MarkerStyle*) jcas_GetHandle(env,style);
-Aspect_MarkMapEntry* the_this = (Aspect_MarkMapEntry*) jcas_GetHandle(env,theobj);
-the_this->SetValue((Standard_Integer) index,*the_style);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1MarkMapEntry_Aspect_1MarkMapEntry_1SetValue_12 (JNIEnv *env, jobject theobj, jobject entry)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_MarkMapEntry* the_entry = (Aspect_MarkMapEntry*) jcas_GetHandle(env,entry);
-Aspect_MarkMapEntry* the_this = (Aspect_MarkMapEntry*) jcas_GetHandle(env,theobj);
-the_this->SetValue(*the_entry);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1MarkMapEntry_SetStyle (JNIEnv *env, jobject theobj, jobject Style)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_MarkerStyle* the_Style = (Aspect_MarkerStyle*) jcas_GetHandle(env,Style);
-Aspect_MarkMapEntry* the_this = (Aspect_MarkMapEntry*) jcas_GetHandle(env,theobj);
-the_this->SetStyle(*the_Style);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_Aspect_1MarkMapEntry_Style (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_MarkMapEntry* the_this = (Aspect_MarkMapEntry*) jcas_GetHandle(env,theobj);
-const Aspect_MarkerStyle& theret = the_this->Style();
-thejret = jcas_CreateObject(env,"CASCADESamplesJni/Aspect_MarkerStyle",&theret,0);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1MarkMapEntry_SetIndex (JNIEnv *env, jobject theobj, jint index)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_MarkMapEntry* the_this = (Aspect_MarkMapEntry*) jcas_GetHandle(env,theobj);
-the_this->SetIndex((Standard_Integer) index);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jint JNICALL Java_CASCADESamplesJni_Aspect_1MarkMapEntry_Index (JNIEnv *env, jobject theobj)
-{
-jint thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_MarkMapEntry* the_this = (Aspect_MarkMapEntry*) jcas_GetHandle(env,theobj);
- thejret = the_this->Index();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1MarkMapEntry_Free (JNIEnv *env, jobject theobj)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_MarkMapEntry* the_this = (Aspect_MarkMapEntry*) jcas_GetHandle(env,theobj);
-the_this->Free();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_Aspect_1MarkMapEntry_IsAllocated (JNIEnv *env, jobject theobj)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_MarkMapEntry* the_this = (Aspect_MarkMapEntry*) jcas_GetHandle(env,theobj);
- thejret = the_this->IsAllocated();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1MarkMapEntry_Dump (JNIEnv *env, jobject theobj)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_MarkMapEntry* the_this = (Aspect_MarkMapEntry*) jcas_GetHandle(env,theobj);
-the_this->Dump();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1MarkMapEntry_FinalizeValue(JNIEnv *, jclass, jlong theid)
-{
-if (theid) {
- Aspect_MarkMapEntry* theobj = (Aspect_MarkMapEntry*) theid;
- delete theobj;
-}
-}
-
-
-}
diff --git a/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_MarkMap_java.cxx b/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_MarkMap_java.cxx
deleted file mode 100755
index 26c916c977..0000000000
--- a/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_MarkMap_java.cxx
+++ /dev/null
@@ -1,33 +0,0 @@
-//
-// Copyright (C) 1991 - 2000 by
-// Matra Datavision SA. All rights reserved.
-//
-// Copyright (C) 2001 - 2004 by
-// Open CASCADE SA. All rights reserved.
-//
-// This file is part of the Open CASCADE Technology software.
-//
-// This software may be distributed and/or modified under the terms and
-// conditions of the Open CASCADE Public License as defined by Open CASCADE SA
-// and appearing in the file LICENSE included in the packaging of this file.
-//
-// This software is distributed on an "AS IS" basis, without warranty of any
-// kind, and Open CASCADE SA hereby disclaims all such warranties,
-// including without limitation, any warranties of merchantability, fitness
-// for a particular purpose or non-infringement. Please see the License for
-// the specific terms and conditions governing rights and limitations under the
-// License.
-
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-
-
-
-extern "C" {
-
-}
diff --git a/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_MarkerStyle_java.cxx b/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_MarkerStyle_java.cxx
deleted file mode 100755
index b30f6db3d9..0000000000
--- a/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_MarkerStyle_java.cxx
+++ /dev/null
@@ -1,366 +0,0 @@
-// Copyright (C) 1991,1995 by
-//
-// MATRA DATAVISION, FRANCE
-//
-// This software is furnished in accordance with the terms and conditions
-// of the contract and with the inclusion of the above copyright notice.
-// This software or any other copy thereof may not be provided or otherwise
-// be made available to any other person. No title to an ownership of the
-// software is hereby transferred.
-//
-// At the termination of the contract, the software and all copies of this
-// software must be deleted.
-
-#include
-#include
-#include
-#include
-#include
-#include
-
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-
-
-extern "C" {
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1MarkerStyle_Aspect_1MarkerStyle_1Create_11 (JNIEnv *env, jobject theobj)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_MarkerStyle* theret = new Aspect_MarkerStyle();
-jcas_SetHandle(env,theobj,theret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1MarkerStyle_Aspect_1MarkerStyle_1Create_12 (JNIEnv *env, jobject theobj, jint aType)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_MarkerStyle* theret = new Aspect_MarkerStyle((Aspect_TypeOfMarker) aType);
-jcas_SetHandle(env,theobj,theret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1MarkerStyle_Aspect_1MarkerStyle_1Create_13 (JNIEnv *env, jobject theobj, jobject aXpoint, jobject aYpoint)
-{
-
-jcas_Locking alock(env);
-{
-try {
-TColStd_Array1OfReal* the_aXpoint = (TColStd_Array1OfReal*) jcas_GetHandle(env,aXpoint);
-TColStd_Array1OfReal* the_aYpoint = (TColStd_Array1OfReal*) jcas_GetHandle(env,aYpoint);
-Aspect_MarkerStyle* theret = new Aspect_MarkerStyle(*the_aXpoint,*the_aYpoint);
-jcas_SetHandle(env,theobj,theret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1MarkerStyle_Aspect_1MarkerStyle_1Create_14 (JNIEnv *env, jobject theobj, jobject aXpoint, jobject aYpoint, jobject aSpoint)
-{
-
-jcas_Locking alock(env);
-{
-try {
-TColStd_Array1OfReal* the_aXpoint = (TColStd_Array1OfReal*) jcas_GetHandle(env,aXpoint);
-TColStd_Array1OfReal* the_aYpoint = (TColStd_Array1OfReal*) jcas_GetHandle(env,aYpoint);
-TColStd_Array1OfBoolean* the_aSpoint = (TColStd_Array1OfBoolean*) jcas_GetHandle(env,aSpoint);
-Aspect_MarkerStyle* theret = new Aspect_MarkerStyle(*the_aXpoint,*the_aYpoint,*the_aSpoint);
-jcas_SetHandle(env,theobj,theret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_Aspect_1MarkerStyle_Assign (JNIEnv *env, jobject theobj, jobject Other)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_MarkerStyle* the_Other = (Aspect_MarkerStyle*) jcas_GetHandle(env,Other);
-Aspect_MarkerStyle* the_this = (Aspect_MarkerStyle*) jcas_GetHandle(env,theobj);
-const Aspect_MarkerStyle& theret = the_this->Assign(*the_Other);
-thejret = jcas_CreateObject(env,"CASCADESamplesJni/Aspect_MarkerStyle",&theret,0);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jint JNICALL Java_CASCADESamplesJni_Aspect_1MarkerStyle_Type (JNIEnv *env, jobject theobj)
-{
-jint thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_MarkerStyle* the_this = (Aspect_MarkerStyle*) jcas_GetHandle(env,theobj);
- thejret = the_this->Type();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jint JNICALL Java_CASCADESamplesJni_Aspect_1MarkerStyle_Length (JNIEnv *env, jobject theobj)
-{
-jint thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_MarkerStyle* the_this = (Aspect_MarkerStyle*) jcas_GetHandle(env,theobj);
- thejret = the_this->Length();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_Aspect_1MarkerStyle_Values (JNIEnv *env, jobject theobj, jint aRank, jobject aX, jobject aY)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Standard_Real the_aX = jcas_GetReal(env,aX);
-Standard_Real the_aY = jcas_GetReal(env,aY);
-Aspect_MarkerStyle* the_this = (Aspect_MarkerStyle*) jcas_GetHandle(env,theobj);
- thejret = the_this->Values((Standard_Integer) aRank,the_aX,the_aY);
-jcas_SetReal(env,aX,the_aX);
-jcas_SetReal(env,aY,the_aY);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_Aspect_1MarkerStyle_XValues (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_MarkerStyle* the_this = (Aspect_MarkerStyle*) jcas_GetHandle(env,theobj);
-const TShort_Array1OfShortReal& theret = the_this->XValues();
-thejret = jcas_CreateObject(env,"CASCADESamplesJni/TShort_Array1OfShortReal",&theret,0);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_Aspect_1MarkerStyle_YValues (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_MarkerStyle* the_this = (Aspect_MarkerStyle*) jcas_GetHandle(env,theobj);
-const TShort_Array1OfShortReal& theret = the_this->YValues();
-thejret = jcas_CreateObject(env,"CASCADESamplesJni/TShort_Array1OfShortReal",&theret,0);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_Aspect_1MarkerStyle_SValues (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_MarkerStyle* the_this = (Aspect_MarkerStyle*) jcas_GetHandle(env,theobj);
-const TColStd_Array1OfBoolean& theret = the_this->SValues();
-thejret = jcas_CreateObject(env,"CASCADESamplesJni/TColStd_Array1OfBoolean",&theret,0);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_Aspect_1MarkerStyle_IsEqual (JNIEnv *env, jobject theobj, jobject Other)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_MarkerStyle* the_Other = (Aspect_MarkerStyle*) jcas_GetHandle(env,Other);
-Aspect_MarkerStyle* the_this = (Aspect_MarkerStyle*) jcas_GetHandle(env,theobj);
- thejret = the_this->IsEqual(*the_Other);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_Aspect_1MarkerStyle_IsNotEqual (JNIEnv *env, jobject theobj, jobject Other)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_MarkerStyle* the_Other = (Aspect_MarkerStyle*) jcas_GetHandle(env,Other);
-Aspect_MarkerStyle* the_this = (Aspect_MarkerStyle*) jcas_GetHandle(env,theobj);
- thejret = the_this->IsNotEqual(*the_Other);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1MarkerStyle_FinalizeValue(JNIEnv *, jclass, jlong theid)
-{
-if (theid) {
- Aspect_MarkerStyle* theobj = (Aspect_MarkerStyle*) theid;
- delete theobj;
-}
-}
-
-
-}
diff --git a/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_PixMap_java.cxx b/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_PixMap_java.cxx
deleted file mode 100755
index dfda1db9d3..0000000000
--- a/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_PixMap_java.cxx
+++ /dev/null
@@ -1,33 +0,0 @@
-//
-// Copyright (C) 1991 - 2000 by
-// Matra Datavision SA. All rights reserved.
-//
-// Copyright (C) 2001 - 2004 by
-// Open CASCADE SA. All rights reserved.
-//
-// This file is part of the Open CASCADE Technology software.
-//
-// This software may be distributed and/or modified under the terms and
-// conditions of the Open CASCADE Public License as defined by Open CASCADE SA
-// and appearing in the file LICENSE included in the packaging of this file.
-//
-// This software is distributed on an "AS IS" basis, without warranty of any
-// kind, and Open CASCADE SA hereby disclaims all such warranties,
-// including without limitation, any warranties of merchantability, fitness
-// for a particular purpose or non-infringement. Please see the License for
-// the specific terms and conditions governing rights and limitations under the
-// License.
-
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-
-
-
-extern "C" {
-
-}
diff --git a/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_TypeMapEntry_java.cxx b/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_TypeMapEntry_java.cxx
deleted file mode 100755
index 41b3fc963d..0000000000
--- a/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_TypeMapEntry_java.cxx
+++ /dev/null
@@ -1,323 +0,0 @@
-// Copyright (C) 1991,1995 by
-//
-// MATRA DATAVISION, FRANCE
-//
-// This software is furnished in accordance with the terms and conditions
-// of the contract and with the inclusion of the above copyright notice.
-// This software or any other copy thereof may not be provided or otherwise
-// be made available to any other person. No title to an ownership of the
-// software is hereby transferred.
-//
-// At the termination of the contract, the software and all copies of this
-// software must be deleted.
-
-#include
-#include
-#include
-#include
-#include
-#include
-
-#include
-#include
-#include
-
-
-extern "C" {
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1TypeMapEntry_Aspect_1TypeMapEntry_1Create_11 (JNIEnv *env, jobject theobj)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_TypeMapEntry* theret = new Aspect_TypeMapEntry();
-jcas_SetHandle(env,theobj,theret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1TypeMapEntry_Aspect_1TypeMapEntry_1Create_12 (JNIEnv *env, jobject theobj, jint index, jobject style)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_LineStyle* the_style = (Aspect_LineStyle*) jcas_GetHandle(env,style);
-Aspect_TypeMapEntry* theret = new Aspect_TypeMapEntry((Standard_Integer) index,*the_style);
-jcas_SetHandle(env,theobj,theret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1TypeMapEntry_Aspect_1TypeMapEntry_1Create_13 (JNIEnv *env, jobject theobj, jobject entry)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_TypeMapEntry* the_entry = (Aspect_TypeMapEntry*) jcas_GetHandle(env,entry);
-Aspect_TypeMapEntry* theret = new Aspect_TypeMapEntry(*the_entry);
-jcas_SetHandle(env,theobj,theret);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1TypeMapEntry_Aspect_1TypeMapEntry_1SetValue_11 (JNIEnv *env, jobject theobj, jint index, jobject style)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_LineStyle* the_style = (Aspect_LineStyle*) jcas_GetHandle(env,style);
-Aspect_TypeMapEntry* the_this = (Aspect_TypeMapEntry*) jcas_GetHandle(env,theobj);
-the_this->SetValue((Standard_Integer) index,*the_style);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1TypeMapEntry_Aspect_1TypeMapEntry_1SetValue_12 (JNIEnv *env, jobject theobj, jobject entry)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_TypeMapEntry* the_entry = (Aspect_TypeMapEntry*) jcas_GetHandle(env,entry);
-Aspect_TypeMapEntry* the_this = (Aspect_TypeMapEntry*) jcas_GetHandle(env,theobj);
-the_this->SetValue(*the_entry);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1TypeMapEntry_SetType (JNIEnv *env, jobject theobj, jobject Style)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_LineStyle* the_Style = (Aspect_LineStyle*) jcas_GetHandle(env,Style);
-Aspect_TypeMapEntry* the_this = (Aspect_TypeMapEntry*) jcas_GetHandle(env,theobj);
-the_this->SetType(*the_Style);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_CASCADESamplesJni_Aspect_1TypeMapEntry_Type (JNIEnv *env, jobject theobj)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_TypeMapEntry* the_this = (Aspect_TypeMapEntry*) jcas_GetHandle(env,theobj);
-const Aspect_LineStyle& theret = the_this->Type();
-thejret = jcas_CreateObject(env,"CASCADESamplesJni/Aspect_LineStyle",&theret,0);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1TypeMapEntry_SetIndex (JNIEnv *env, jobject theobj, jint index)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_TypeMapEntry* the_this = (Aspect_TypeMapEntry*) jcas_GetHandle(env,theobj);
-the_this->SetIndex((Standard_Integer) index);
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jint JNICALL Java_CASCADESamplesJni_Aspect_1TypeMapEntry_Index (JNIEnv *env, jobject theobj)
-{
-jint thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_TypeMapEntry* the_this = (Aspect_TypeMapEntry*) jcas_GetHandle(env,theobj);
- thejret = the_this->Index();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1TypeMapEntry_Free (JNIEnv *env, jobject theobj)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_TypeMapEntry* the_this = (Aspect_TypeMapEntry*) jcas_GetHandle(env,theobj);
-the_this->Free();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT jboolean JNICALL Java_CASCADESamplesJni_Aspect_1TypeMapEntry_IsAllocated (JNIEnv *env, jobject theobj)
-{
-jboolean thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_TypeMapEntry* the_this = (Aspect_TypeMapEntry*) jcas_GetHandle(env,theobj);
- thejret = the_this->IsAllocated();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1TypeMapEntry_Dump (JNIEnv *env, jobject theobj)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Aspect_TypeMapEntry* the_this = (Aspect_TypeMapEntry*) jcas_GetHandle(env,theobj);
-the_this->Dump();
-
-}
-catch (Standard_Failure) {
- Standard_SStream Err;
- Err << Standard_Failure::Caught();
- Err << (char) 0;
- jcas_ThrowException(env,GetSString(Err));
-}
-}
-alock.Release();
-
-}
-
-
-
-JNIEXPORT void JNICALL Java_CASCADESamplesJni_Aspect_1TypeMapEntry_FinalizeValue(JNIEnv *, jclass, jlong theid)
-{
-if (theid) {
- Aspect_TypeMapEntry* theobj = (Aspect_TypeMapEntry*) theid;
- delete theobj;
-}
-}
-
-
-}
diff --git a/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_TypeMap_java.cxx b/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_TypeMap_java.cxx
deleted file mode 100755
index 5e1c282746..0000000000
--- a/samples/java/drv/CASCADESamplesJni/CASCADESamplesJni_Aspect_TypeMap_java.cxx
+++ /dev/null
@@ -1,33 +0,0 @@
-//
-// Copyright (C) 1991 - 2000 by
-// Matra Datavision SA. All rights reserved.
-//
-// Copyright (C) 2001 - 2004 by
-// Open CASCADE SA. All rights reserved.
-//
-// This file is part of the Open CASCADE Technology software.
-//
-// This software may be distributed and/or modified under the terms and
-// conditions of the Open CASCADE Public License as defined by Open CASCADE SA
-// and appearing in the file LICENSE included in the packaging of this file.
-//
-// This software is distributed on an "AS IS" basis, without warranty of any
-// kind, and Open CASCADE SA hereby disclaims all such warranties,
-// including without limitation, any warranties of merchantability, fitness
-// for a particular purpose or non-infringement. Please see the License for
-// the specific terms and conditions governing rights and limitations under the
-// License.
-
-#include
-#include
-#include