Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

com.theotherbell.ui: Javadoc index of package com.theotherbell.ui.


Package Samples:

com.theotherbell.ui

Classes:

DateField: GUI component that lets the user enter a date using a drop-down DatePicker. Usage is illustrated in the sample code below: JDialog dlg = new JDialog(new Frame(), true); DateField df = new DateField(); dlg.getContentPane().add(df); dlg.pack(); dlg.show(); if (null != df.getDate()) System.out.println(df.getDate().toString()); dlg.dispose(); System.exit(0);
DatePicker: GUI component that allows the user to choose a date from a calendar. Usage is illustrated in the sample code below: JDialog dlg = new JDialog(new Frame(), true); DatePicker dp = new DatePicker(); dp.setHideOnSelect(false); dlg.getContentPane().add(dp); dlg.pack(); dlg.show(); System.out.println(dp.getDate().toString()); dlg.dispose(); System.exit(0);
DatePickerSample
DateFieldSample

Home | Contact Us | Privacy Policy | Terms of Service