soundPlayback
Class PlaybackDialogComponent

java.lang.Object
  extended by soundPlayback.PlaybackDialogComponent
Direct Known Subclasses:
ASIOPlaybackDialogComponent, FilePlaybackDialogComponent, PlaybackDialog.EmptyDialogComponent, soundCardDialogComponent

public abstract class PlaybackDialogComponent
extends java.lang.Object

Class for playback systems to add a system specific dialog component to the sound playback dialog.

Generally, playback of incoming audio data must go out through the same device that it came in on so that the sound devices clock is correctly synchronised. So if you're acquiring data from a sound card, the output must be through the sound card, if you're acquiring data through an NI board, the output must be through the same NI board.

The class allows you to add a specific dialog component to the general playback dialog.

Author:
Doug Gillespie
See Also:
PlaybackSystem

Constructor Summary
PlaybackDialogComponent()
           
 
Method Summary
(package private) abstract  java.awt.Component getComponent()
          Get the graphics component to be included in the playback dialog
(package private) abstract  PlaybackParameters getParams(PlaybackParameters playbackParameters)
          Get teh parameters from the dialog component
(package private) abstract  void setParams(PlaybackParameters playbackParameters)
          Set the parameters in the dialog component
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

PlaybackDialogComponent

public PlaybackDialogComponent()
Method Detail

getComponent

abstract java.awt.Component getComponent()
Get the graphics component to be included in the playback dialog

Returns:

setParams

abstract void setParams(PlaybackParameters playbackParameters)
Set the parameters in the dialog component

Parameters:
playbackParameters -

getParams

abstract PlaybackParameters getParams(PlaybackParameters playbackParameters)
Get teh parameters from the dialog component

Parameters:
playbackParameters -
Returns:
PlaybackParameters or null.
See Also:
PlaybackParameters