01: package org.python.core;
02:
03: /**
04: * base class for jython strings.
05: */
06:
07: public abstract class PyBaseString extends PySequence {
08: //~ BEGIN GENERATED REGION -- DO NOT EDIT SEE gexpose.py
09: /* type info */
10:
11: public static final String exposed_name = "basestring";
12:
13: public static final Class exposed_base = PyObject.class;
14:
15: public static void typeSetup(PyObject dict, PyType.Newstyle marker) {
16: }
17:
18: //~ END GENERATED REGION -- DO NOT EDIT SEE gexpose.py
19:
20: public PyBaseString() {
21: super ();
22: }
23:
24: protected PyBaseString(PyType type) {
25: super(type);
26: }
27: }
|