[Bug 101] New: Java Timer using not possible....

bugzilla-daemon at icedtea.classpath.org bugzilla-daemon at icedtea.classpath.org
Sat Jan 19 10:53:07 PST 2008


http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=101

           Summary: Java Timer using not possible....
           Product: IcedTea
           Version: unspecified
          Platform: PC
        OS/Version: Linux
            Status: NEW
          Severity: major
          Priority: P2
         Component: IcedTea
        AssignedTo: unassigned at icedtea.classpath.org
        ReportedBy: mail at liro.ch


Whe compiling and running a Java application using a timer, the timer-events
wont be displayed....when using Sun's java JRE (even when compiled on IcedTea)
the same Prog will run without any problem...


--- JAVA CODE ---
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JOptionPane;
import javax.swing.Timer;
import java.util.Date;

public class TimerTest
{
   public static void main(String[] args) {
      class TimerListener implements ActionListener
      {
         public void actionPerformed(ActionEvent event) {
            System.out.println(new Date());
         }
      }

      TimerListener listener = new TimerListener();

      final int DELAY = 1000; // Milliseconds between timer ticks
      final Timer t = new Timer(DELAY, listener);
      t.start();

      JOptionPane.showMessageDialog(null, "Quit?");
      System.exit(0);
   }
}
--- JAVA CODE END ---

if i use java -verbose then I can see the timerevents....

java version "1.7.0"
IcedTea Runtime Environment (build 1.7.0-b21)
IcedTea Client VM (build 1.7.0-b21, mixed mode)

on an actual Fedora8...


-- 
Configure bugmail: http://icedtea.classpath.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the distro-pkg-dev mailing list