![JAR search and dependency download from the Maven repository](/logo.png)
org.monte.media.iff.IFFVisitor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.monte.media.amigaatari Show documentation
Show all versions of org.monte.media.amigaatari Show documentation
A library for processing Amiga and Atari still images, video, audio and meta-data.
The newest version!
/*
* @(#)Main.java
* Copyright © 2023 Werner Randelshofer, Switzerland. MIT License.
*/
package org.monte.media.iff;
import org.monte.media.exception.AbortException;
import org.monte.media.exception.ParseException;
/**
* IFFVisitor is notified each time the IFFParser visits
* a data chunk and when a group is entered or leaved.
*
*/
public interface IFFVisitor {
public void enterGroup(IFFChunk group)
throws ParseException, AbortException;
public void leaveGroup(IFFChunk group)
throws ParseException, AbortException;
public void visitChunk(IFFChunk group, IFFChunk chunk)
throws ParseException, AbortException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy