Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Java swing within tjava

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
Labels (3)
1 Reply
Anonymous
Not applicable
Author

Hi
Please refer to this article, I think it must be useful for you.
Regards
Shong