Skip to content

Commit

Permalink
*) adding toString method
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@620 6c8d7289-2bf4-0310-a012-ef5d649a1542
  • Loading branch information
theli committed Aug 31, 2005
1 parent ebbd063 commit 2e6df95
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions source/de/anomic/plasma/plasmaCrawlProfile.java
Expand Up @@ -188,6 +188,17 @@ public entry(String name, String startURL, String generalFilter, String specific
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;
}
Expand Down

0 comments on commit 2e6df95

Please sign in to comment.