Package org.jitsi.impl.neomedia.control
Class ControlsAdapter
- java.lang.Object
-
- org.jitsi.impl.neomedia.control.AbstractControls
-
- org.jitsi.impl.neomedia.control.ControlsAdapter
-
- All Implemented Interfaces:
javax.media.Controls
- Direct Known Subclasses:
AbstractRenderer,AudioLevelEffect,AudioLevelEffect2,AudioMixingPushBufferStream
public class ControlsAdapter extends AbstractControls
Provides a default implementation of Controls which does not expose any controls.- Author:
- Lyubomir Marinov
-
-
Field Summary
Fields Modifier and Type Field Description static Object[]EMPTY_CONTROLSThe constant which represents an empty array of controls.
-
Constructor Summary
Constructors Constructor Description ControlsAdapter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Object[]getControls()ImplementsControls.getControls().-
Methods inherited from class org.jitsi.impl.neomedia.control.AbstractControls
getControl, getControl, queryInterface, queryInterface
-
-
-
-
Field Detail
-
EMPTY_CONTROLS
public static final Object[] EMPTY_CONTROLS
The constant which represents an empty array of controls. Explicitly defined in order to avoid unnecessary allocations.
-
-
Method Detail
-
getControls
public Object[] getControls()
ImplementsControls.getControls(). Gets the controls available for the owner of this instance. The current implementation returns an empty array because it has no available controls.- Returns:
- an array of Objects which represent the controls available for the owner of this instance
-
-