Package com.github.stephenc.javaisotools.sabre.impl

Examples of com.github.stephenc.javaisotools.sabre.impl.ByteDataReference


    public void doTFEntry(int type, ISO9660DateDataReference date) throws HandlerException {
        streamHandler.startElement(new SystemUseEntryElement("TF", 1));

        checkTFType(type);
        streamHandler.data(new ByteDataReference(type | TF_LONG_FORM));

        streamHandler.data(date);
        streamHandler.endElement();
    }
View Full Code Here


    public void doTFEntry(int type, ISO9660ShortDateDataReference date) throws HandlerException {
        streamHandler.startElement(new SystemUseEntryElement("TF", 1));

        checkTFType(type);
        streamHandler.data(new ByteDataReference(type));

        streamHandler.data(date);
        streamHandler.endElement();
    }
View Full Code Here

    public void doSFEntry(long virtualFileSizeHigh, long virtualFileSizeLow, int tableDepth) throws HandlerException {
        streamHandler.startElement(new SystemUseEntryElement("SF", 1));
        streamHandler.data(new BothWordDataReference(virtualFileSizeHigh));
        streamHandler.data(new BothWordDataReference(virtualFileSizeLow));
        streamHandler.data(new ByteDataReference(tableDepth));
        streamHandler.endElement();
    }
View Full Code Here

            if (flags < 0 || flags > 255) {
                throw new HandlerException("Invalid RR flags: " + flags);
            }

            streamHandler.startElement(new SystemUseEntryElement("RR", 1));
            streamHandler.data(new ByteDataReference(flags));
            streamHandler.endElement();
        }
        // Else: Do nothing (RRIP 1.12 does not include the RR Entry type)
    }
View Full Code Here

TOP

Related Classes of com.github.stephenc.javaisotools.sabre.impl.ByteDataReference

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.