org.python.core
public class PyProperty extends PyObject implements PyType.Newstyle
Field Summary | |
---|---|
static String | exposed_name |
Constructor Summary | |
---|---|
PyProperty() | |
PyProperty(PyType subType) |
Method Summary | |
---|---|
PyObject | getDoc() |
PyObject | getFdel() |
PyObject | getFget() |
PyObject | getFset() |
void | property_init(PyObject[] args, String[] keywords) |
void | setDoc(PyObject py) |
void | setFdel(PyObject py) |
void | setFget(PyObject py) |
void | setFset(PyObject py) |
static void | typeSetup(PyObject dict, PyType.Newstyle marker) |
PyObject | __call__(PyObject arg1, PyObject[] args, String[] keywords) |
void | __delete__(PyObject obj) |
PyObject | __get__(PyObject obj, PyObject type) |
void | __set__(PyObject obj, PyObject value) |