Package com.toedter.calendar

Examples of com.toedter.calendar.JTextFieldDateEditor.addPropertyChangeListener()


   * @param cdm Le modèle de Date
   */
  public DateChooser(CurrentDateModel cdm){
    super(cdm.getDate(),"d MMM yyyy",new JTextFieldDateEditor());
    JTextFieldDateEditor editor = (JTextFieldDateEditor)(this.getDateEditor());
    editor.addPropertyChangeListener("maDate",this);
    //On empéche la possibilité d'éditer le champ
    editor.setEditable(false);
    this.cdm = cdm;   
    //this.setPreferredSize(new Dimension(5, 5));
  }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.