View Javadoc
1   /* ----------------------------------------------------------------------------
2    * This file was automatically generated by SWIG (http://www.swig.org).
3    * Version 3.0.8
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.gnu.glpk;
10  
11  
12  /**
13   * Wrapper class for pointer generated by SWIG.
14   * <p>Please, refer to doc/glpk-java.pdf of the GLPK for Java distribution
15   * and to doc/glpk.pdf of the GLPK source distribution
16   * for details. You can download the GLPK source distribution from
17   * <a href="ftp://ftp.gnu.org/gnu/glpk">ftp://ftp.gnu.org/gnu/glpk</a>.
18   */
19  public class glp_iptcp {
20    private transient long swigCPtr;
21    protected transient boolean swigCMemOwn;
22  
23    protected glp_iptcp(long cPtr, boolean cMemoryOwn) {
24      swigCMemOwn = cMemoryOwn;
25      swigCPtr = cPtr;
26    }
27  
28    protected static long getCPtr(glp_iptcp obj) {
29      return (obj == null) ? 0 : obj.swigCPtr;
30    }
31  
32    protected void finalize() {
33      delete();
34    }
35  
36    public synchronized void delete() {
37      if (swigCPtr != 0) {
38        if (swigCMemOwn) {
39          swigCMemOwn = false;
40          GLPKJNI.delete_glp_iptcp(swigCPtr);
41        }
42        swigCPtr = 0;
43      }
44    }
45  
46    public void setMsg_lev(int value) {
47      GLPKJNI.glp_iptcp_msg_lev_set(swigCPtr, this, value);
48    }
49  
50    public int getMsg_lev() {
51      return GLPKJNI.glp_iptcp_msg_lev_get(swigCPtr, this);
52    }
53  
54    public void setOrd_alg(int value) {
55      GLPKJNI.glp_iptcp_ord_alg_set(swigCPtr, this, value);
56    }
57  
58    public int getOrd_alg() {
59      return GLPKJNI.glp_iptcp_ord_alg_get(swigCPtr, this);
60    }
61  
62    public void setFoo_bar(SWIGTYPE_p_double value) {
63      GLPKJNI.glp_iptcp_foo_bar_set(swigCPtr, this, SWIGTYPE_p_double.getCPtr(value));
64    }
65  
66    public SWIGTYPE_p_double getFoo_bar() {
67      long cPtr = GLPKJNI.glp_iptcp_foo_bar_get(swigCPtr, this);
68      return (cPtr == 0) ? null : new SWIGTYPE_p_double(cPtr, false);
69    }
70  
71    public glp_iptcp() {
72      this(GLPKJNI.new_glp_iptcp(), true);
73    }
74  
75  }