Community
Participate
Working Groups
StringBuffer buf= new StringBuffer();
for (int i= 0; i < cpentries.length; i++) {
IClasspathEntry entry= cpentries[i];
buf.append(desc);
// Encode spaces - will be decoded using java.net.URLDecoder.decode(String, String)
buf.append(desc.replace(' ', '+'));
buf.append(' ');
buf.append(entry.getEntryKind());