You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
448 B
25 lines
448 B
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;
|
|
}
|
|
|
|
}
|