| Modifier and Type | Field and Description |
|---|---|
| protected PyObject | |
| protected boolean | docFromGetter
Whether this property's __doc__ was copied from its getter. |
| protected PyObject | |
| protected PyObject | |
| protected PyObject | |
| public static final PyType |
| Access | Constructor and Description |
|---|---|
| public | |
| public |
| Modifier and Type | Method and Description |
|---|---|
| public PyObject | __call__(PyObject
the first argument to the function. arg1, PyObject[] the last arguments to the function (including keyword arguments). args, String[] the keywords used for all keyword arguments. keywords)Overrides org. A variant of the __call__ method with one extra initial argument. |
| public void | |
| public PyObject | __get__(PyObject
- the instance accessing this descriptor. Can be null if this is being accessed by
a type. obj, PyObject - the type accessing this descriptor. Will be null if obj exists as obj is of the
type accessing the descriptor. type)Overrides org. Get descriptor for this PyObject. |
| public void | |
| public PyObject | |
| public PyObject | |
| pack-priv final void | |
| pack-priv final PyObject | |
| public void | |
| pack-priv final void | |
| pack-priv final PyObject | |
| pack-priv final PyObject | |
| pack-priv final PyObject | |
| private PyObject | propertyCopy(PyObject get, PyObject set, PyObject del)
Return a copy of this property with the optional addition of a get/set/del. |
| public boolean | refersDirectlyTo(PyObject ob)
Implements org. Optional operation. |
| public PyObject | |
| public int | traverse(Visitproc visit, Object arg)
Implements org. Traverses all directly contained |
| doc | back to summary |
|---|---|
protected PyObject doc
| |
| docFromGetter | back to summary |
|---|---|
| protected boolean docFromGetter Whether this property's __doc__ was copied from its getter. | |
| fdel | back to summary |
|---|---|
protected PyObject fdel
| |
| fget | back to summary |
|---|---|
protected PyObject fget
| |
| fset | back to summary |
|---|---|
protected PyObject fset
| |
| TYPE | back to summary |
|---|---|
| public static final PyType TYPE | |
| PyProperty | back to summary |
|---|---|
| public PyProperty() | |
| PyProperty | back to summary |
|---|---|
| public PyProperty(PyType subType) | |
| __call__ | back to summary |
|---|---|
| public PyObject __call__(PyObject arg1, PyObject[] args, String[] keywords) Overrides org. Doc from org. A variant of the __call__ method with one extra initial argument. This variant is used to
allow method invocations to be performed efficiently.
The default behavior is to invoke
| |
| __delete__ | back to summary |
|---|---|
| public void __delete__(PyObject obj) Overrides org.
| |
| __get__ | back to summary |
|---|---|
| public PyObject __get__(PyObject obj, PyObject type) Overrides org. Doc from org. Get descriptor for this PyObject.
- the object defined for this descriptor for the given obj and type. | |
| __set__ | back to summary |
|---|---|
| public void __set__(PyObject obj, PyObject value) Overrides org.
| |
| deleter | back to summary |
|---|---|
| public PyObject deleter(PyObject deleter) | |
| getter | back to summary |
|---|---|
| public PyObject getter(PyObject getter) | |
| property___delete__ | back to summary |
|---|---|
pack-priv final void property___delete__(PyObject obj)
| |
| property___get__ | back to summary |
|---|---|
pack-priv final PyObject property___get__(PyObject obj, PyObject type)
| |
| property___init__ | back to summary |
|---|---|
public void property___init__(PyObject[] args, String[] keywords)
| |
| property___set__ | back to summary |
|---|---|
pack-priv final void property___set__(PyObject obj, PyObject value)
| |
| property_deleter | back to summary |
|---|---|
pack-priv final PyObject property_deleter(PyObject deleter)
| |
| property_getter | back to summary |
|---|---|
pack-priv final PyObject property_getter(PyObject getter)
| |
| property_setter | back to summary |
|---|---|
pack-priv final PyObject property_setter(PyObject setter)
| |
| propertyCopy | back to summary |
|---|---|
| private PyObject propertyCopy(PyObject get, PyObject set, PyObject del) Return a copy of this property with the optional addition of a get/set/del. Helper method for the getter/setter/deleter methods. | |
| refersDirectlyTo | back to summary |
|---|---|
| public boolean refersDirectlyTo(PyObject ob) Implements org. Doc from org. Optional operation.
Should only be implemented if it is more efficient
than calling
| |
| setter | back to summary |
|---|---|
| public PyObject setter(PyObject setter) | |
| traverse | back to summary |
|---|---|
| public int traverse(Visitproc visit, Object arg) Implements org. Doc from org. Traverses all directly contained
| |