KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > media > engine > MediaPlugin


1 /*
2  * JBoss, the OpenSource J2EE webOS
3  *
4  * Distributable under LGPL license.
5  * See terms of license at gnu.org.
6  */

7
8 package org.jboss.media.engine;
9
10
11 /**
12  * @version <tt>$Revision: 1.3 $</tt>
13  * @author <a HREF="mailto:spyridon_samothrakis@yahoo.com">Spyridon Samothrakis</a>
14  */

15 public abstract class MediaPlugin
16 {
17    /**
18     * @param output
19     * @return
20     */

21    public abstract int process(Object JavaDoc output);
22    
23    
24    public String JavaDoc getName()
25    {
26      return getClass().getName();
27    }
28 }
29
Popular Tags