All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bigdata.counters.render.HistoryTableRenderer Maven / Gradle / Ivy

Go to download

Blazegraph(TM) DB Core Platform. It contains all Blazegraph DB dependencies other than Blueprints.

There is a newer version: 2.1.4
Show newest version
package com.bigdata.counters.render;

import java.util.regex.Pattern;

import com.bigdata.counters.query.HistoryTable;

/**
 * 
 * @author Bryan Thompson
 * @version $Id$
 */
public abstract class HistoryTableRenderer implements IRenderer {

    protected final HistoryTable t;

    protected final Pattern pattern;
    
    protected final ValueFormatter formatter;

    /**
     * 
     * @param tbl
     * @param pattern
     *            Used to identify capturing groups and extract column
     *            labels.
     * @param formatter
     */
    protected HistoryTableRenderer(HistoryTable tbl,
            Pattern pattern, ValueFormatter formatter) {

        this.t = tbl;
        
        this.pattern = pattern;

        this.formatter = formatter;
        
    }
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy