01: /*
02: * Copyright 2000 Finn Bock
03: *
04: * This program contains material copyrighted by:
05: * Copyright (c) Corporation for National Research Initiatives.
06: * Originally written by Marc-Andre Lemburg (mal@lemburg.com).
07: */
08:
09: package org.python.core;
10:
11: public interface ucnhashAPI {
12: public int getCchMax();
13:
14: public int getValue(String s, int start, int end);
15: }
|