result set

This commit is contained in:
jackdaw@loafle.com 2017-04-25 15:39:37 +09:00
parent 81dbd153f2
commit 1120b927bd

View File

@ -0,0 +1,33 @@
package com.loafle.overflow.crawler.result;
import com.loafle.overflow.crawler.config.Item;
import java.util.List;
import java.util.Map;
/**
* Created by root on 17. 4. 25.
*/
public class ResultSet {
Item item;
List<String []> rows;
public void addRow(String [] row) {
rows.add(row);
}
public Map<String,String> getData() {
return null;
}
public Map<String, String> parseCol() {
return null;
}
public Map<String, String> parseRow() {
return null;
}
}