Advertisement
Guest User

Untitled

a guest
May 26th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. import javax.swing.SwingUtilities;
  2.  
  3. public class RunTraceFileViewer implements Runnable {
  4.  
  5. public void run() {
  6. TraceFileViewer h = new TraceFileViewer();
  7. }
  8.  
  9. public static void main(String[] args) {
  10. SwingUtilities.invokeLater(new RunTraceFileViewer());
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement