Package tv.porst.swfretools.dissector.gui.main.hexview

Examples of tv.porst.swfretools.dissector.gui.main.hexview.FlashHexView


    }

    detailPanel.removeAllOptionalPanels();

    // Step I: Highlight the selected element in the hex view
    final FlashHexView hexView = detailPanel.getHexView();

    hexView.setFile(FlashTreeHelpers.getLoadedFile(node));

    hexView.getHexView().setCurrentOffset(node.getUserObject().getBitPosition() / 8);
    hexView.getHexView().setSelectionLength(2 * ((node.getUserObject().getBitLength() + 7) / 8));

    // Step II: Display additional panels where necessary.
    final IExtraPanel extraPanel = node.getExtraPanel();

    if (extraPanel != null) {
View Full Code Here

TOP

Related Classes of tv.porst.swfretools.dissector.gui.main.hexview.FlashHexView

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.