(final BurstMap row)
| 42 | } |
| 43 | |
| 44 | @Override |
| 45 | public void observe(final BurstMap row) { |
| 46 | final double weight = oldAdapter.weight(row); |
| 47 | if(weight>0.0) { |
| 48 | final String resStr = row.getAsString(oldAdapter.def().resultColumn); |
| 49 | final int category = oldAdapter.category(resStr); |
| 50 | if(category>=0) { |
| 51 | sampler.observe(row); |
| 52 | } |
| 53 | } |
| 54 | } |
| 55 | } |
| 56 | |
| 57 |