Places the string representation of extension value
into the StringBuffer object.
buffer.append(prefix).append("Extended Key Usage: "); //$NON-NLS-1$
if (keys == null) {
try {
keys = getExtendedKeyUsage();
} catch (IOException e) {
// incorrect extension value encoding
super.dumpValue(buffer);
return;
}
}
buffer.append('[");
for (Iterator it=keys.iterator(); it.hasNext();) {
buffer.append(" \"").append(it.next()).append('""); //$NON-NLS-1$
if (it.hasNext()) {
buffer.append(',");
}
}
buffer.append(" ]\n"); //$NON-NLS-1$