]> gerrit.simantics Code Review - simantics/3d.git/blob - org.jcae.opencascade/src-java/org/jcae/opencascade/jni/Geom2dAdaptor_Curve.java
Updated OpenCASCADE to 7.3.0
[simantics/3d.git] / org.jcae.opencascade / src-java / org / jcae / opencascade / jni / Geom2dAdaptor_Curve.java
1 /* ----------------------------------------------------------------------------
2  * This file was automatically generated by SWIG (http://www.swig.org).
3  * Version 3.0.12
4  *
5  * Do not make changes to this file unless you know what you are doing--modify
6  * the SWIG interface file instead.
7  * ----------------------------------------------------------------------------- */
8
9 package org.jcae.opencascade.jni;
10
11 public class Geom2dAdaptor_Curve extends Adaptor2d_Curve2d {
12   private transient long swigCPtr;
13
14   protected Geom2dAdaptor_Curve(long cPtr, boolean cMemoryOwn) {
15     super(OccJavaJNI.Geom2dAdaptor_Curve_SWIGUpcast(cPtr), cMemoryOwn);
16     swigCPtr = cPtr;
17   }
18
19   protected static long getCPtr(Geom2dAdaptor_Curve obj) {
20     return (obj == null) ? 0 : obj.swigCPtr;
21   }
22
23   protected void finalize() {
24     delete();
25   }
26
27   public synchronized void delete() {
28     if (swigCPtr != 0) {
29       if (swigCMemOwn) {
30         swigCMemOwn = false;
31         OccJavaJNI.delete_Geom2dAdaptor_Curve(swigCPtr);
32       }
33       swigCPtr = 0;
34     }
35     super.delete();
36   }
37
38   public Geom2dAdaptor_Curve() {
39     this(OccJavaJNI.new_Geom2dAdaptor_Curve__SWIG_0(), true);
40   }
41
42   public Geom2dAdaptor_Curve(Geom2d_Curve C) {
43     this(OccJavaJNI.new_Geom2dAdaptor_Curve__SWIG_1(Geom2d_Curve.getCPtr(C), C), true);
44   }
45
46   public Geom2dAdaptor_Curve(Geom2d_Curve C, double UFirst, double ULast) {
47     this(OccJavaJNI.new_Geom2dAdaptor_Curve__SWIG_2(Geom2d_Curve.getCPtr(C), C, UFirst, ULast), true);
48   }
49
50   public void load(Geom2d_Curve C) {
51     OccJavaJNI.Geom2dAdaptor_Curve_load__SWIG_0(swigCPtr, this, Geom2d_Curve.getCPtr(C), C);
52   }
53
54   public void load(Geom2d_Curve C, double UFirst, double ULast) {
55     OccJavaJNI.Geom2dAdaptor_Curve_load__SWIG_1(swigCPtr, this, Geom2d_Curve.getCPtr(C), C, UFirst, ULast);
56   }
57
58 }