PLplot  5.9.9
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros
PLGraphicsIn.java
Go to the documentation of this file.
1 /* ----------------------------------------------------------------------------
2  * This file was automatically generated by SWIG (http://www.swig.org).
3  * Version 2.0.10
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 plplot.core;
10 
11 public class PLGraphicsIn {
12  private long swigCPtr;
13  protected boolean swigCMemOwn;
14 
15  protected PLGraphicsIn(long cPtr, boolean cMemoryOwn) {
16  swigCMemOwn = cMemoryOwn;
17  swigCPtr = cPtr;
18  }
19 
20  protected static long getCPtr(PLGraphicsIn 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;
33  }
34  swigCPtr = 0;
35  }
36  }
37 
38  public void setType(int value) {
40  }
41 
42  public int getType() {
44  }
45 
46  public void setState(long value) {
48  }
49 
50  public long getState() {
52  }
53 
54  public void setKeysym(long value) {
56  }
57 
58  public long getKeysym() {
60  }
61 
62  public void setButton(long value) {
64  }
65 
66  public long getButton() {
68  }
69 
70  public void setSubwindow(int value) {
72  }
73 
74  public int getSubwindow() {
76  }
77 
78  public void setString(String value) {
80  }
81 
82  public String getString() {
84  }
85 
86  public void setPX(int value) {
88  }
89 
90  public int getPX() {
92  }
93 
94  public void setPY(int value) {
96  }
97 
98  public int getPY() {
100  }
101 
102  public void setDX(double value) {
104  }
105 
106  public double getDX() {
108  }
109 
110  public void setDY(double value) {
112  }
113 
114  public double getDY() {
116  }
117 
118  public void setWX(double value) {
120  }
121 
122  public double getWX() {
124  }
125 
126  public void setWY(double value) {
128  }
129 
130  public double getWY() {
132  }
133 
134  public PLGraphicsIn() {
135  this(plplotjavacJNI.new_PLGraphicsIn(), true);
136  }
137 
138 }