| LEFT | RIGHT |
| 1 /* Copyright (c) 2008 Jython Developers */ | 1 /* Copyright (c) 2008 Jython Developers */ |
| 2 package org.python.core; | 2 package org.python.core; |
| 3 | 3 |
| 4 import org.python.expose.ExposedDelete; | 4 import org.python.expose.ExposedDelete; |
| 5 import org.python.expose.ExposedGet; | 5 import org.python.expose.ExposedGet; |
| 6 import org.python.expose.ExposedMethod; | 6 import org.python.expose.ExposedMethod; |
| 7 import org.python.expose.ExposedNew; | 7 import org.python.expose.ExposedNew; |
| 8 import org.python.expose.ExposedSet; | 8 import org.python.expose.ExposedSet; |
| 9 import org.python.expose.ExposedType; | 9 import org.python.expose.ExposedType; |
| 10 | 10 |
| (...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 @ExposedSet(name = "args") | 188 @ExposedSet(name = "args") |
| 189 public void setArgs(PyObject val) { | 189 public void setArgs(PyObject val) { |
| 190 args = PyTuple.fromIterable(val); | 190 args = PyTuple.fromIterable(val); |
| 191 } | 191 } |
| 192 | 192 |
| 193 @ExposedDelete(name = "message") | 193 @ExposedDelete(name = "message") |
| 194 public void delMessage() { | 194 public void delMessage() { |
| 195 message = Py.None; | 195 message = Py.None; |
| 196 } | 196 } |
| 197 } | 197 } |
| LEFT | RIGHT |