public class DateEditor : Container, Implementor, Buildable {
public weak uint day { get; set; } ;
public weak uint max_year { get; set; } ;
public weak uint min_year { get; set; } ;
public weak uint month { get; set; } ;
public weak uint year { get; set; } ;
public DateEditor ( ) ;
public signal bool date_error ( DateTimeError type ) ;
public void get_date ( uint year,
uint month,
uint day ) ;
public uint get_day ( ) ;
public uint get_month ( ) ;
public uint get_year ( ) ;
public void set_date ( uint year,
uint month,
uint day ) ;
public bool set_day ( uint day ) ;
public bool set_month ( uint month ) ;
public bool set_year ( uint year ) ;
}

public DateEditor ( ) ;
public signal bool date_error ( DateTimeError type ) ;
public weak uint day { get; set; } ;
public weak uint max_year { get; set; } ;
public weak uint min_year { get; set; } ;
public weak uint month { get; set; } ;
public weak uint year { get; set; } ;
public void get_date ( uint year,
uint month,
uint day ) ;
public uint get_day ( ) ;
public uint get_month ( ) ;
public uint get_year ( ) ;
public void set_date ( uint year,
uint month,
uint day ) ;
public bool set_day ( uint day ) ;
public bool set_month ( uint month ) ;
public bool set_year ( uint year ) ;
Created by Valadoc