Methods Summary |
---|
public boolean | addWord(java.lang.String word)adding words to the predictive text dictionary is not
supported on the platform. Returns false always
return false;
|
public boolean | isValid()check if current handle is valid
return handle > 0;
|
public PTIterator | iterator()get a machine dependent predictive text Iterattor
if (iterator == null && isValid())
iterator = new PTIteratorImpl(handle);
return iterator;
|
private static native int | ptInitLibrary0(java.lang.String lang)Called 1st time predictive text library is accessed.
it calls platform specific predictive text initialization functions
|