]> gerrit.simantics Code Review - simantics/3d.git/blob - org.jcae.opencascade/src-java/org/jcae/opencascade/jni/TopExp_Explorer.java
Remove dependencies on log4j
[simantics/3d.git] / org.jcae.opencascade / src-java / org / jcae / opencascade / jni / TopExp_Explorer.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 TopExp_Explorer {
12   private transient long swigCPtr;
13   protected transient boolean swigCMemOwn;
14
15   protected TopExp_Explorer(long cPtr, boolean cMemoryOwn) {
16     swigCMemOwn = cMemoryOwn;
17     swigCPtr = cPtr;
18   }
19
20   protected static long getCPtr(TopExp_Explorer obj) {
21     return (obj == null) ? 0 : obj.swigCPtr;
22   }
23
24   protected void finalize() {
25     delete();
26   }
27
28   public synchronized void delete() {
29     if (swigCPtr != 0) {
30       if (swigCMemOwn) {
31         swigCMemOwn = false;
32         OccJavaJNI.delete_TopExp_Explorer(swigCPtr);
33       }
34       swigCPtr = 0;
35     }
36   }
37
38   public TopExp_Explorer() {
39     this(OccJavaJNI.new_TopExp_Explorer__SWIG_0(), true);
40   }
41
42   public TopExp_Explorer(TopoDS_Shape S, TopAbs_ShapeEnum ToFind, TopAbs_ShapeEnum ToAvoid) {
43     this(OccJavaJNI.new_TopExp_Explorer__SWIG_1(TopoDS_Shape.getCPtr(S), S, ToFind.swigValue(), ToAvoid.swigValue()), true);
44   }
45
46   public TopExp_Explorer(TopoDS_Shape S, TopAbs_ShapeEnum ToFind) {
47     this(OccJavaJNI.new_TopExp_Explorer__SWIG_2(TopoDS_Shape.getCPtr(S), S, ToFind.swigValue()), true);
48   }
49
50   public void init(TopoDS_Shape S, TopAbs_ShapeEnum ToFind, TopAbs_ShapeEnum ToAvoid) {
51     OccJavaJNI.TopExp_Explorer_init__SWIG_0(swigCPtr, this, TopoDS_Shape.getCPtr(S), S, ToFind.swigValue(), ToAvoid.swigValue());
52   }
53
54   public void init(TopoDS_Shape S, TopAbs_ShapeEnum ToFind) {
55     OccJavaJNI.TopExp_Explorer_init__SWIG_1(swigCPtr, this, TopoDS_Shape.getCPtr(S), S, ToFind.swigValue());
56   }
57
58   public boolean more() {
59         return OccJavaJNI.TopExp_Explorer_more(swigCPtr, this);
60 }
61
62   public void next() {
63     OccJavaJNI.TopExp_Explorer_next(swigCPtr, this);
64   }
65
66   public TopoDS_Shape current() {
67     long cPtr = OccJavaJNI.TopExp_Explorer_current(swigCPtr, this);
68     return (TopoDS_Shape)TopoDS_Shape.create(cPtr);
69 }
70
71 }