Package com.ajjpj.asysmon.datasink.aggregation.bottomup

Examples of com.ajjpj.asysmon.datasink.aggregation.bottomup.ABottomUpLeafFilter


    /**
     * override to customize
     */
    protected ABottomUpLeafFilter createLeafFilter() {
        return new ABottomUpLeafFilter() {
            @Override public boolean isLeaf(AHierarchicalData data) {
                return data.getIdentifier().startsWith(ASysMonStatement.IDENT_PREFIX_JDBC);
            }
        };
    }
View Full Code Here


/**
* @author arno
*/
public class AJdbcReportServlet extends ABottomUpReportServlet {
    @Override public ABottomUpLeafFilter getLeafFilter() {
        return new ABottomUpLeafFilter() {
            @Override public boolean isLeaf(AHierarchicalData data) {
                return data.getIdentifier().startsWith(ASysMonStatement.IDENT_PREFIX_JDBC);
            }
        };
    }
View Full Code Here

TOP

Related Classes of com.ajjpj.asysmon.datasink.aggregation.bottomup.ABottomUpLeafFilter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.