org.python.core.PyCell Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jython-slim Show documentation
Show all versions of jython-slim Show documentation
Jython is an implementation of the high-level, dynamic, object-oriented
language Python written in 100% Pure Java, and seamlessly integrated with
the Java platform. It thus allows you to run Python on any Java platform.
/* Copyright (c) Jython Developers */
package org.python.core;
import org.python.expose.ExposedGet;
import org.python.expose.ExposedType;
/**
* The Python cell type.
*
* Cells are used to implement variables referenced by multiple scopes.
*/
@ExposedType(name = "cell", isBaseType = false)
public class PyCell extends PyObject implements Traverseproc {
public static final PyType TYPE = PyType.fromClass(PyCell.class);
/** The underlying content of the cell, or null. */
public PyObject ob_ref;
public PyCell() {
super(TYPE);
}
@ExposedGet(name = "cell_contents")
public PyObject getCellContents() {
if (ob_ref == null) {
throw Py.ValueError("Cell is empty");
}
return ob_ref;
}
@Override
public String toString() {
if (ob_ref == null) {
return String.format("", Py.idstr(this));
}
return String.format("", Py.idstr(this),
ob_ref.getType().getName(), Py.idstr(ob_ref));
}
/* Traverseproc implementation */
@Override
public int traverse(Visitproc visit, Object arg) {
return ob_ref != null ? visit.visit(ob_ref, arg) : 0;
}
@Override
public boolean refersDirectlyTo(PyObject ob) {
return ob != null && ob_ref == ob;
}
}
| |