I would like to create a java Menu in oder to select different Talend jobs. Not being a java specialist, I started with a littel java test program within tjava. It compiles without errors but does not show up on the screen.
----------------------------------------------------
class FrameBeispiel
{
void main(String[] args)
{
JFrame meinFrame = new JFrame("Beispiel JFrame");
meinFrame.setSize(200,200);
meinFrame.setVisible(true);
}
}
-----------------------------------------------------------------
I added the import statement under the advanced tab :
import javax.swing.JFrame;
What am I doing wrong?
Your help is very much appreciated