/*
* MusicProvider.java
*
* Version 1.0 Jan 3, 2009
*
* Copyright notice
*
* Brief description
*
* (c) 2009 by dbreuer
*/
package de.fhkoeln.santiago.codesamples;
import de.fhkoeln.cosima.codesamples.AbstractComponent;
/**
* Documentation comment without implementation details.
* Use implementation comments to describe details of the implementation.
* Comment lines should not be longer than 70 characters.
*
* @author dbreuer
* @version 1.0 Jan 3, 2009
*
*/
public class MusicProvider extends AbstractComponent {
protected String _execute() {
return getInput()[0];
}
}