result set
This commit is contained in:
parent
81dbd153f2
commit
1120b927bd
|
@ -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;
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user