Decision.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 Decision extends BaseObject {
12  private transient long swigCPtr;
13 
14  protected Decision(long cPtr, boolean cMemoryOwn) {
15  super(mainJNI.Decision_SWIGUpcast(cPtr), cMemoryOwn);
16  swigCPtr = cPtr;
17  }
18 
19  protected static long getCPtr(Decision 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_Decision(swigCPtr);
32  }
33  swigCPtr = 0;
34  }
35  super.delete();
36  }
37 
38  protected void swigDirectorDisconnect() {
39  swigCMemOwn = false;
40  delete();
41  }
42 
43  public void swigReleaseOwnership() {
44  swigCMemOwn = false;
45  mainJNI.Decision_change_ownership(this, swigCPtr, false);
46  }
47 
48  public void swigTakeOwnership() {
49  swigCMemOwn = true;
50  mainJNI.Decision_change_ownership(this, swigCPtr, true);
51  }
52 
53  public Decision() {
54  this(mainJNI.new_Decision(), true);
55  mainJNI.Decision_director_connect(this, swigCPtr, swigCMemOwn, true);
56  }
57 
58  public void apply(Solver s) {
59  mainJNI.Decision_apply(swigCPtr, this, Solver.getCPtr(s), s);
60  }
61 
62  public void refute(Solver s) {
63  mainJNI.Decision_refute(swigCPtr, this, Solver.getCPtr(s), s);
64  }
65 
66  public String toString() {
67  return (getClass() == Decision.class) ? mainJNI.Decision_toString(swigCPtr, this) : mainJNI.Decision_toStringSwigExplicitDecision(swigCPtr, this);
68  }
69 
70  public void accept(DecisionVisitor visitor) {
71  if (getClass() == Decision.class) mainJNI.Decision_accept(swigCPtr, this, DecisionVisitor.getCPtr(visitor), visitor); else mainJNI.Decision_acceptSwigExplicitDecision(swigCPtr, this, DecisionVisitor.getCPtr(visitor), visitor);
72  }
73 
74 }
void accept(DecisionVisitor visitor)
Definition: Decision.java:70
static long getCPtr(Solver obj)
Definition: Solver.java:63
Decision(long cPtr, boolean cMemoryOwn)
Definition: Decision.java:14