Package fr.xlim.ssd.capmanipulator.library

Examples of fr.xlim.ssd.capmanipulator.library.DebugComponent$ClassDebugInfo$FieldDebugInfo


     *
     */
    @Override
    public Component load(CapInputStream in) throws UnableToReadCapFileException {

        DebugComponent debugComponent = new DebugComponent();

        // we first read tag and size
        super.load((byte) ComponentEnum.DEBUG_COMPONENT.getValue(), in, debugComponent);

        logger.debug(LogType.DEBUG_COMPONENT.getMarker(), "Component size: " + (debugComponent.getSize() + 0x00FFFF));

        logger.info(LogType.DEBUG_COMPONENT.getMarker(), "WARNING: The Debug Component is not still implemened!");

        // we reset the count of byte read to zero
        in.resetCount();

        for (int i = 0; i < debugComponent.getSize(); i++) {
            in.readByte();
        }

        checkSize(in, debugComponent);

View Full Code Here


                break;

            case DEBUG_COMPONENT:
                logger.debug(LogType.COMPONENT.getMarker(), "Found Debug Component");
                DebugComponent dc = (DebugComponent) new DebugComponentRead().load(inputStream);
                capFile.getComponents().add(dc);
                break;

            default:
View Full Code Here

TOP

Related Classes of fr.xlim.ssd.capmanipulator.library.DebugComponent$ClassDebugInfo$FieldDebugInfo

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.