http://qs321.pair.com?node_id=917307


in reply to Re: Rendering a simple graphic hello world in Java (using Perl)
in thread Rendering a simple graphic hello world in Java (using Perl)

Good suggestion, I got it to work, thanks to you:
use Inline ( Java => 'STUDY', STUDY => [ qw(javax.swing.JFrame javax.swing.JOptionPane) ] ); # http://download.oracle.com/javase/1.4.2/docs/api/javax/swing/JOption +Pane.html my $f = javax::swing::JFrame->new; my $l = javax::swing::JOptionPane->new(); $l->showMessageDialog($f, "Hello World");




The mantra of every experienced web application developer is the same: thou shalt separate business logic from display. Ironically, almost all template engines allow violation of this separation principle, which is the very impetus for HTML template engine development.

-- Terence Parr, "Enforcing Strict Model View Separation in Template Engines"