Package org.antlr.works.stats

Examples of org.antlr.works.stats.StatisticsManager


        typeCombo.setModel(typeModel);
    }

    public void dialogWillDisplay() {
        guiManager = new StatisticsManager(StatisticsReporter.TYPE_GUI);
        grammarManager = new StatisticsManager(StatisticsReporter.TYPE_GRAMMAR);
        runtimeManager = new StatisticsManager(StatisticsReporter.TYPE_RUNTIME);

        updateInfo(false);
    }
View Full Code Here


        else
            return typeCombo.getSelectedIndex()+1;
    }

    protected void updateInfo(boolean textOnly) {
        StatisticsManager sm = null;
        boolean rangeEnabled = true;

        switch(getTypeIndex()) {
            case TYPE_GUI:
                rangeEnabled = false;
View Full Code Here

            new Thread(this).start();
        }

        public boolean submit() {
            for (int i = 0; i < managers.length; i++) {
                StatisticsManager manager = managers[i];

                if(manager == guiManager && !usesAWStats)
                    continue;

                progress.setProgress(i+1);
View Full Code Here

TOP

Related Classes of org.antlr.works.stats.StatisticsManager

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.