*) adding toString method

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@620 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
theli 19 years ago
parent ebbd063c92
commit 2e6df95786

@ -188,6 +188,17 @@ public class plasmaCrawlProfile {
mem.put("xdstopw", (xdstopw) ? "true" : "false"); // exclude dynamic stop-word
mem.put("xpstopw", (xpstopw) ? "true" : "false"); // exclude parent stop-words
}
public String toString() {
StringBuffer str = new StringBuffer();
if (this.mem != null) {
str.append(this.mem.toString());
}
return str.toString();
}
public entry(Map mem) {
this.mem = mem;
}

Loading…
Cancel
Save