Class PyProperty

    • Constructor Detail

      • PyProperty

        public PyProperty()
      • PyProperty

        public PyProperty​(PyType subType)
    • Method Detail

      • setFget

        public void setFget​(PyObject py)
      • setFset

        public void setFset​(PyObject py)
      • setFdel

        public void setFdel​(PyObject py)
      • setDoc

        public void setDoc​(PyObject py)
      • property_init

        public void property_init​(PyObject[] args,
                                  java.lang.String[] keywords)
      • __call__

        public PyObject __call__​(PyObject arg1,
                                 PyObject[] args,
                                 java.lang.String[] keywords)
        Description copied from class: PyObject
        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 __call__(args, keywords) with the appropriate arguments. The only reason to override this function would be for improved performance.
        Overrides:
        __call__ in class PyObject
        Parameters:
        arg1 - the first argument to the function.
        args - the last arguments to the function (including keyword arguments).
        keywords - the keywords used for all keyword arguments.