%PDF- %PDF-
Direktori : /proc/309157/root/home/waritko/yacy/source/net/yacy/contentcontrol/ |
Current File : //proc/309157/root/home/waritko/yacy/source/net/yacy/contentcontrol/SMWListRow.java |
package net.yacy.contentcontrol; import net.yacy.kelondro.blob.Tables; public class SMWListRow { private Tables.Data data; public static final SMWListRow POISON = new SMWListRow(); public static final SMWListRow EMPTY = new SMWListRow(); public SMWListRow() { this.data = new Tables.Data(); } public void add (String key, String value) { this.data.put(key, value); } public Tables.Data getData() { return this.data; } }