tests.python.custom_proxymaker.annotated_class.py Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jython Show documentation
Show all versions of jython 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.
import java.io.BufferedInputStream
from java.lang import Deprecated
from org.python.compiler.custom_proxymaker import MiniClampMaker
from org.python.compiler.custom_proxymaker import CustomAnnotation
class AnnotatedInputStream(java.io.BufferedInputStream):
__proxymaker__ = MiniClampMaker
__java_package__ = 'custom_proxymaker.tests'
_clamp_class_annotations = {CustomAnnotation:
{'createdBy': 'Darusik',
'priority': CustomAnnotation.Priority.LOW,
'changedBy': ['Darjus', 'Darjunia']},
Deprecated:None}