I want to test if a particular source line that I've recieved from my mixer is a microphone. I do it with the code ..
//All lines have been successfully opened in previous code
Line[] lines = myMixer.getSourceLines();
int length = lines.length;
for ( int i = 0; i < length; i ++){
// Since all lines are open and supported all I need to do is
// iterate through the array and test each line to see if its
// a mic.
if(myMixer.isLineSupported(Port.Info.MICROPHONE){ // I need a different method
System.out.println("This line never prints");
}
}
Is there a different method that I can use other than isLineSupported() that will let me know if my line goes to a mic?

myMixer? I.e. usingAudioSystem.isLineSupported(Port.Info.MICROPHONE). – Michael Jan 19 at 22:40