go to previous page   go to home page   go to next page

Answer:

See below:

setEditable() in Use

Any place within the constructor would work.

   public Repeater( String title)      // constructor
   {  
      super( title );
      setLayout( new FlowLayout() ); 
      outText.setEditable( false );

      add( inLabel  ) ;
      add( inText   ) ;
      add( outLabel ) ;
      add( outText  ) ;

      inText.addActionListener( this );
      setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );   
   }

QUESTION 14:

Can GUI components be used with JApplets ?