Removing java sample
[occt.git] / samples / java / drv / SampleHLRJni / SampleHLRJni_Aspect_ColorMap_java.cxx
diff --git a/samples/java/drv/SampleHLRJni/SampleHLRJni_Aspect_ColorMap_java.cxx b/samples/java/drv/SampleHLRJni/SampleHLRJni_Aspect_ColorMap_java.cxx
deleted file mode 100755 (executable)
index e47f7bc..0000000
+++ /dev/null
@@ -1,312 +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 <SampleHLRJni_Aspect_ColorMap.h>
-#include <Aspect_ColorMap.hxx>
-#include <jcas.hxx>
-#include <stdlib.h>
-#include <Standard_ErrorHandler.hxx>
-#include <Standard_Failure.hxx>
-#include <Standard_SStream.hxx>
-
-#include <Aspect_TypeOfColorMap.hxx>
-#include <Standard_Integer.hxx>
-#include <Aspect_ColorMapEntry.hxx>
-#include <Quantity_Color.hxx>
-
-
-extern "C" {
-
-
-JNIEXPORT jshort JNICALL Java_SampleHLRJni_Aspect_1ColorMap_Type (JNIEnv *env, jobject theobj)
-{
-jshort thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(Aspect_ColorMap) the_this = *((Handle(Aspect_ColorMap)*) 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_SampleHLRJni_Aspect_1ColorMap_Size (JNIEnv *env, jobject theobj)
-{
-jint thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(Aspect_ColorMap) the_this = *((Handle(Aspect_ColorMap)*) jcas_GetHandle(env,theobj));
- thejret = the_this->Size();
-
-}
-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_SampleHLRJni_Aspect_1ColorMap_Index (JNIEnv *env, jobject theobj, jint aColormapIndex)
-{
-jint thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(Aspect_ColorMap) the_this = *((Handle(Aspect_ColorMap)*) jcas_GetHandle(env,theobj));
- thejret = the_this->Index((Standard_Integer) aColormapIndex);
-
-}
-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_SampleHLRJni_Aspect_1ColorMap_Dump (JNIEnv *env, jobject theobj)
-{
-
-jcas_Locking alock(env);
-{
-try {
-Handle(Aspect_ColorMap) the_this = *((Handle(Aspect_ColorMap)*) jcas_GetHandle(env,theobj));
-the_this->Dump();
-
-}
-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_SampleHLRJni_Aspect_1ColorMap_Entry (JNIEnv *env, jobject theobj, jint AColorMapIndex)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(Aspect_ColorMap) the_this = *((Handle(Aspect_ColorMap)*) jcas_GetHandle(env,theobj));
-const Aspect_ColorMapEntry& theret = the_this->Entry((Standard_Integer) AColorMapIndex);
-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,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jint JNICALL Java_SampleHLRJni_Aspect_1ColorMap_FindColorMapIndex (JNIEnv *env, jobject theobj, jint AColorMapEntryIndex)
-{
-jint thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(Aspect_ColorMap) the_this = *((Handle(Aspect_ColorMap)*) 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,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_SampleHLRJni_Aspect_1ColorMap_FindEntry (JNIEnv *env, jobject theobj, jint AColorMapEntryIndex)
-{
-jobject thejret;
-
-jcas_Locking alock(env);
-{
-try {
-Handle(Aspect_ColorMap) the_this = *((Handle(Aspect_ColorMap)*) 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,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jint JNICALL Java_SampleHLRJni_Aspect_1ColorMap_NearestColorMapIndex (JNIEnv *env, jobject theobj, jobject aColor)
-{
-jint thejret;
-
-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(Aspect_ColorMap) the_this = *((Handle(Aspect_ColorMap)*) 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,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jobject JNICALL Java_SampleHLRJni_Aspect_1ColorMap_NearestEntry (JNIEnv *env, jobject theobj, jobject aColor)
-{
-jobject thejret;
-
-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(Aspect_ColorMap) the_this = *((Handle(Aspect_ColorMap)*) 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,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-
-JNIEXPORT jint JNICALL Java_SampleHLRJni_Aspect_1ColorMap_AddEntry (JNIEnv *env, jobject theobj, jobject aColor)
-{
-jint thejret;
-
-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(Aspect_ColorMap) the_this = *((Handle(Aspect_ColorMap)*) 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,Err.str().c_str());
-}
-}
-alock.Release();
-return thejret;
-}
-
-
-}