Package com.turt2live.metrics.Metrics

Examples of com.turt2live.metrics.Metrics.Graph.addPlotter()


                            return 1;
                        }
                    });
                }
                else {
                    chimeraGraph.addPlotter(new Metrics.Plotter("Disabled") {
                        @Override
                        public int getValue() {
                            return 1;
                        }
                    });
View Full Code Here


                // Vanilla v Modified config graph
                Graph customConfigGraph = metrics.createGraph("Modified Configs");

                if (customConfig) {
                    customConfigGraph.addPlotter(new Metrics.Plotter("Edited") {
                        @Override
                        public int getValue() {
                            return 1;
                        }
                    });
View Full Code Here

                            return 1;
                        }
                    });
                }
                else {
                    customConfigGraph.addPlotter(new Metrics.Plotter("Vanilla") {
                        @Override
                        public int getValue() {
                            return 1;
                        }
                    });
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.