Searched defs:strToConvert (Results 1 - 1 of 1) sorted by relevance

/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/encoding/
H A DCodeSetConversion.java79 public abstract void convert(String strToConvert); argument
212 public void convert(String strToConvert) { argument
217 if (chars == null || chars.length < strToConvert.length())
218 chars = new char[strToConvert.length()];
220 numChars = strToConvert.length();
222 strToConvert.getChars(0, numChars, chars, 0);

Completed in 42 milliseconds