Package org.adoptopenjdk.jitwatch.ui.triview.bytecode

Examples of org.adoptopenjdk.jitwatch.ui.triview.bytecode.ViewerBytecode


    Scene scene = new Scene(vBox, JITWatchUI.WINDOW_WIDTH, JITWatchUI.WINDOW_HEIGHT);
    navigationStack = new TriViewNavigationStack(this, scene);

    viewerSource = new ViewerSource(parent, this, LineType.SOURCE);
    viewerBytecode = new ViewerBytecode(parent, navigationStack, parent.getJITDataModel(), this, LineType.BYTECODE);
    viewerAssembly = new ViewerAssembly(parent, this, LineType.ASSEMBLY);

    paneSource = new TriViewPane("Source", viewerSource);
    paneBytecode = new TriViewPane("Bytecode (double click for JVM spec)", viewerBytecode);
    paneAssembly = new TriViewPane("Assembly", viewerAssembly);
View Full Code Here

TOP

Related Classes of org.adoptopenjdk.jitwatch.ui.triview.bytecode.ViewerBytecode

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.