use of org.spf4j.base.EqualsPredicate in project spf4j by zolyfarkas.
the class ZStackPanel method filter.
@Override
public void filter() {
List<Sampled<InvokedMethod>> tips = search(xx, yy, 0, 0);
if (tips.size() >= 1) {
final InvokedMethod value = tips.get(0).getObj();
updateSamples(getMethod(), getSamples().filteredBy(new EqualsPredicate<>(value.getMethod())));
repaint();
}
}
use of org.spf4j.base.EqualsPredicate in project spf4j by zolyfarkas.
the class FlameStackPanel method filter.
@Override
public void filter() {
List<Pair<Method, SampleNode>> tips = search(xx, yy, 0, 0);
if (tips.size() >= 1) {
final Method value = tips.get(0).getFirst();
updateSamples(getMethod(), getSamples().filteredBy(new EqualsPredicate<Method>(value)));
repaint();
}
}
use of org.spf4j.base.EqualsPredicate in project spf4j by zolyfarkas.
the class HotFlameStackPanel method filter.
@Override
public void filter() {
List<SampleKey> tips = search(xx, yy, 0, 0);
if (tips.size() >= 1) {
final SampleKey value = tips.get(0);
updateSamples(getMethod(), getSamples().filteredBy(new EqualsPredicate<>(value.getMethod())));
repaint();
}
}
Aggregations