All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.ocap.media.VBIFilterListener Maven / Gradle / Ivy

There is a newer version: 1.3.1
Show newest version
/*
 * VBIFilterListener.java
 *
 * Created on September 18, 2004, 1:37 PM
 */

package org.ocap.media;

import java.util.EventListener;

/**
 * 

* This interface represents a VBI filter event listener. * When a specific event happens, the {@link VBIFilterListener#filterUpdate} * method is called with an event that has a proper event code to indicate * the event. *

* * @author Shigeaki Watanabe (Panasonic) */ public interface VBIFilterListener extends EventListener { /** * This method is called by the OCAP implementation to notify an * application that a VBI event has occurred. * * @param event a VBIFilterEvent instance that contains a event code. */ public void filterUpdate(VBIFilterEvent event); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy