Package jsynoptic.builtin.ui

Examples of jsynoptic.builtin.ui.DateTimePanel


    //  An optional date for sync -> async or async -> sync format conversions
    JPanel initialDatePanel = new JPanel(new BorderLayout());
    initialDateLabel= new JLabel(resources.getString("initialDate"));
    initialDateLabel.setFont(new Font("Dialog", Font.PLAIN,12));
    initialDatePanel.add( initialDateLabel, BorderLayout.WEST);
    initialDatePanel.add(initialDate = new DateTimePanel(0, TimeStampedDataSourceCollection.timeStampedDateFormat.getTimeZone()), BorderLayout.CENTER);
    initialDate.setEnabled(false);
    initialDateLabel.setEnabled(false);
    add(initialDatePanel, gbc);
    gbc.gridy++;
  }
View Full Code Here

TOP

Related Classes of jsynoptic.builtin.ui.DateTimePanel

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.