Examples of SorcMessage


Examples of vavi.sound.mfi.vavi.header.SorcMessage

     * @return 0: not protected, 1: protected
     * @throws NoSuchElementException
     * @see SorcMessage
     */
    public int getSorc() {
        SorcMessage subChunk = (SorcMessage) headerChunk.getSubChunks().get(SorcMessage.TYPE);
        if (subChunk != null) {
            return subChunk.getSorc();
        } else {
            throw new NoSuchElementException(SorcMessage.TYPE);
        }
    }
View Full Code Here

Examples of vavi.sound.mfi.vavi.header.SorcMessage

     * @see SorcMessage
     */
    public void setSorc(int sorc)
        throws InvalidMfiDataException {

        SorcMessage subChunk = (SorcMessage) headerChunk.getSubChunks().get(SorcMessage.TYPE);
        if (subChunk != null) {
            subChunk.setSorc(sorc);
        } else {
            headerChunk.getSubChunks().put(SorcMessage.TYPE, new SorcMessage(sorc));
        }
    }
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.