Demon.java
Go to the documentation of this file.
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 com.google.ortools.constraintsolver;
10 
11 public class Demon extends BaseObject {
12  private transient long swigCPtr;
13 
14  protected Demon(long cPtr, boolean cMemoryOwn) {
15  super(mainJNI.Demon_SWIGUpcast(cPtr), cMemoryOwn);
16  swigCPtr = cPtr;
17  }
18 
19  protected static long getCPtr(Demon 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  mainJNI.delete_Demon(swigCPtr);
32  }
33  swigCPtr = 0;
34  }
35  super.delete();
36  }
37 
38  public void run(Solver s) {
39  mainJNI.Demon_run(swigCPtr, this, Solver.getCPtr(s), s);
40  }
41 
42  public int priority() {
43  return mainJNI.Demon_priority(swigCPtr, this);
44  }
45 
46  public String toString() {
47  return mainJNI.Demon_toString(swigCPtr, this);
48  }
49 
50  public void inhibit(Solver s) {
51  mainJNI.Demon_inhibit(swigCPtr, this, Solver.getCPtr(s), s);
52  }
53 
54  public void desinhibit(Solver s) {
55  mainJNI.Demon_desinhibit(swigCPtr, this, Solver.getCPtr(s), s);
56  }
57 
58 }
static long getCPtr(Demon obj)
Definition: Demon.java:19
static long getCPtr(Solver obj)
Definition: Solver.java:63
Demon(long cPtr, boolean cMemoryOwn)
Definition: Demon.java:14