Examples of BothWordDataReference


Examples of com.github.stephenc.javaisotools.iso9660.sabre.impl.BothWordDataReference

        }
    }

    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
TOP
Copyright © 2018 www.massapi.com. 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.