Displaying 3 results from an estimated 3 matches for "getcontentpan".
Did you mean:
getcontentpane
2004 Aug 06
3
q about jspeex
Hi Marc,
thanks for the quick reply.
Marc Gimpel wrote:
> It would appear the the 'pcm2speex.read(frame, 0, frame.length)' is
> blocking which means that it is waiting for data from the underlying
> inputstream (i.e.AudioInputStream(t.input)). If it could read
> sufficient data it would transcode it. If it recieved an EOF, it
> should do some zero padding and then
2002 Dec 30
1
Java Swing App
...get the same result.
Here is the application, itself:
import javax.swing.*;
public class HelloWorldSwing {
public static void main(String[] args) {
JFrame frame = new JFrame("HelloWorldSwing");
final JLabel label = new JLabel("Hello World");
frame.getContentPane().add(label);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.pack();
frame.setVisible(true);
}
}
I'm running RedHat-7.3, with all the latest updates, Gnome-2, and a
2.4.20 kernel. I'm using a recent CVS of wine, Dec 23, I think,
compiled with Op...
2012 Dec 22
0
[LLVMdev] Problem executing Swing application with j3
...wing hello world is the following (Running perfectly with OpenJDK) :
>
> public class HelloSwing {
> public static void main(String[] args) {
> JFrame frame = new JFrame("HelloWorldSwing");
> final JLabel label = new JLabel("Hello World");
> frame.getContentPane().add(label);
>
> frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
> frame.pack();
> frame.setVisible(true);
> }
> }
>
> I'm running j3 on a 32 bit machine, with an x86 OpenSuse 12.2 System.
> Other informations required ?
>
> I have this inf...