public class

DateTimeBrowser

extends JFrame
java.lang.Object
   ↳ java.awt.Component
     ↳ java.awt.Container
       ↳ java.awt.Window
         ↳ java.awt.Frame
           ↳ javax.swing.JFrame
             ↳ org.joda.example.time.DateTimeBrowser

Class Overview

DateTimeBrowser is a Java Swing application which reads a file contining strings and displays DateTime values in a JTable.

The input strings must be suitable for instantiation of DateTime objects. The file is read, and an attempt is made to instantiate a DateTimeObject from the input string on each file line.

Comments (beginning with '#') and blank lines may appear in the file.

Error messages may result from invalid input.

Values calculated from any resulting DateTime objects are placed in a JTable and displayed in a JFrame.

Summary

[Expand]
Inherited Constants
From class javax.swing.JFrame
From class java.awt.Frame
From class java.awt.Component
From interface java.awt.image.ImageObserver
From interface javax.swing.WindowConstants
[Expand]
Inherited Fields
From class javax.swing.JFrame
Public Constructors
DateTimeBrowser()
Public Methods
static void main(String[] args)
This is the main swing application method.
[Expand]
Inherited Methods
From class javax.swing.JFrame
From class java.awt.Frame
From class java.awt.Window
From class java.awt.Container
From class java.awt.Component
From class java.lang.Object
From interface java.awt.MenuContainer
From interface java.awt.image.ImageObserver
From interface javax.accessibility.Accessible
From interface javax.swing.RootPaneContainer

Public Constructors

public DateTimeBrowser ()

Public Methods

public static void main (String[] args)

This is the main swing application method. It sets up and displays the initial GUI, and controls execution thereafter. Everything else in this class is 'private', please read the code.