Interface Port
- All Superinterfaces:
AutoCloseable, Line
Ports are simple lines for input or output of audio to or from audio devices.
Common examples of ports that act as source lines (mixer inputs) include the
microphone, line input, and CD-ROM drive. Ports that act as target lines
(mixer outputs) include the speaker, headphone, and line output. You can
access port using a
Port.Info object.- Since:
- 1.3
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic classThePort.Infoclass extendsLine.Infowith additional information specific to ports, including the port's name and whether it is a source or a target for its mixer. -
Method Summary
Methods declared in interface Line
addLineListener, close, getControl, getControls, getLineInfo, isControlSupported, isOpen, open, removeLineListenerModifier and TypeMethodDescriptionvoidaddLineListener(LineListener listener) Adds a listener to this line.voidclose()Closes the line, indicating that any system resources in use by the line can be released.getControl(Control.Type control) Obtains a control of the specified type, if there is any.Control[]Obtains the set of controls associated with this line.Obtains theLine.Infoobject describing this line.booleanisControlSupported(Control.Type control) Indicates whether the line supports a control of the specified type.booleanisOpen()Indicates whether the line is open, meaning that it has reserved system resources and is operational, although it might not currently be playing or capturing sound.voidopen()Opens the line, indicating that it should acquire any required system resources and become operational.voidremoveLineListener(LineListener listener) Removes the specified listener from this line's list of listeners.