Package com.sun.tools.visualvm.core.ui.components

Examples of com.sun.tools.visualvm.core.ui.components.DataViewComponent


        DataViewComponent.MasterView masterView = new DataViewComponent.MasterView("GC Performance Overview", null, generalDataArea);
        DataViewComponent.MasterViewConfiguration masterConfiguration =
                new DataViewComponent.MasterViewConfiguration(false);

        dvc = new DataViewComponent(masterView, masterConfiguration);

        SimpleXYChartSupport pauseChart = createChart(DataTypeEnum.DECIMAL, ChartTypeEnum.LINE, "GC pause times",
                new String[]{"Minor GC pause", "Major GC pause"}, "<html>Time</html>", "<html>GC  pause  in  \u00B5s</html>",
                new String[]{GcDataCollector.MINOR_GC_TIME_KEY, GcDataCollector.MAJOR_GC_TIME_KEY});
        dvc.addDetailsView(new DataViewComponent.DetailsView("Gc pause times", "description", 0, pauseChart.getChart(), null), DataViewComponent.TOP_LEFT);
View Full Code Here

TOP

Related Classes of com.sun.tools.visualvm.core.ui.components.DataViewComponent

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.