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

net.sf.fmj.media.AbstractPlugIn Maven / Gradle / Ivy

There is a newer version: 1.0.2-jitsi
Show newest version
package net.sf.fmj.media;

import javax.media.*;

/**
 * Abstract implementation of PlugIn, useful for subclassing.
 *
 * @author Ken Larson
 *
 */
public abstract class AbstractPlugIn extends AbstractControls implements PlugIn
{
    public void close()
    {
    }

    public String getName()
    {
        return getClass().getSimpleName(); // override to provide a better name
    }

    public void open() throws ResourceUnavailableException
    {
    }

    public void reset()
    { // TODO
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy