Java examples for javax.sound.sampled:Sound
is sound Port
//package com.java2s; import javax.sound.sampled.*; public class Main { private static Line.Info portInfo = new Line.Info(Port.class); public static boolean isPort(Mixer mixer) { return mixer.isLineSupported(portInfo); }/*w w w . j a v a 2 s . c om*/ }