Here is a java program EmptyFrame1.java you can easily compile:

// file: EmptyFrame1.java          
                                   
import java.awt.event.*;           
import javax.swing.*;              
                                   
class EmptyFrame1 extends JFrame { 
                                   
  // Constructor:                  
 public EmptyFrame1() {                                          
       setTitle("Donald's Empty Frame");                          
       setSize(300,200); // default size is 0,0                  
       setLocation(10,200); // default is 0,0 (top left corner)  
                                                                 
       // Window Listeners                                       
       addWindowListener(new WindowAdapter() {                   
               public void windowClosing(WindowEvent e) {        
                  System.exit(0);                                
               } //windowClosing                                 
       } );                                                      
 }                                                               
                                                                 
 public static void main(Stringݨ args) {                        
   JFrame f = new EmptyFrame1();                                 
   f.show();                                                     
 } //main                                                          
} //class EmptyFrame1       
-- 
  Donald J.
  [email protected]

On Thu, Jun 6, 2013, at 07:42 AM, Mark Pace wrote:
> I want to test X11 forwarding using SSH in Unix System Services.  But I
> can't find an executable X application like xclock.  I find some sample
> programs, but not any executable code.  Is there some executable files
> that
> I am not finding?
> 
> -- 
> The postings on this site are my own and don’t necessarily represent
> Mainline’s positions or opinions
> 
> Mark D Pace
> Senior Systems Engineer
> Mainline Information Systems
> 
> ----------------------------------------------------------------------
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to [email protected] with the message: INFO IBM-MAIN

-- 
http://www.fastmail.fm - Send your email first class

----------------------------------------------------------------------
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [email protected] with the message: INFO IBM-MAIN

Reply via email to