Smart JSwing - Java custom Swing Component

Custom Swing Components

  • Date Picker (Calendar Component) - Java date selection component
  • Time - time entry component; hour, minute, second, AM/PM
  • IP Address - entry component
  • Details - Custom Swing components

  • Calendar - it has both date and time editing controls. User can select a date as well as a time of a day using its easy to use UI controls. You can dynamically change the controls current value by using its setters at run time. Allows you to query the date and time in milliseconds as well as you can pick the parts of the milliseconds, e.g. getDay(), getYear(), getHour() etc.
  • Time - an independent time entry control (also used as part of the Calendar control discussed above) that allows user to edit time from its hour, minute, second, and AM/PM fields. A single spin control allows you to change the fields values. You can eiter use the spin control to change the values or directly edit the value in each field. All fields are validated so that no invalid values can be entered. You can programatically change the controls value like you do for the above mentioned calendar component.
  • IP Address - allows you to edit IP address using this control. It shows a control similar to the IP address editing control used in Microsoft Windows platform. The IP address control has its won model that allows you to dynamically update the controls value and to query the segment values.