public class User : Object {
public weak bool active { get; } ;
public weak string crypted_password { get; set; } ;
public weak string full_name { get; set; } ;
public weak string home_directory { get; set; } ;
public weak string home_phone { get; set; } ;
public weak string name { get; construct } ;
public weak string other_data { get; set; } ;
public weak string password { set; } ;
public weak string room_number { get; set; } ;
public weak string shell { get; set; } ;
public weak int uid { get; set; } ;
public weak string work_phone { get; set; } ;
public User ( string name ) ;
public bool get_active ( ) ;
public weak string get_full_name ( ) ;
public weak string get_home_directory ( ) ;
public weak string get_home_phone_number ( ) ;
public weak string get_login_name ( ) ;
public weak Group get_main_group ( ) ;
public weak string get_other_data ( ) ;
public weak string get_room_number ( ) ;
public weak string get_shell ( ) ;
public long get_uid ( ) ;
public weak string get_work_phone_number ( ) ;
public void set_crypted_password ( string crypted_password ) ;
public void set_full_name ( string full_name ) ;
public void set_home_directory ( string home_directory ) ;
public void set_home_phone_number ( string phone_number ) ;
public void set_main_group ( Group main_group ) ;
public void set_other_data ( string data ) ;
public void set_password ( string password ) ;
public void set_room_number ( string room_number ) ;
public void set_shell ( string shell ) ;
public void set_uid ( long uid ) ;
public void set_work_phone_number ( string phone_number ) ;
}

public User ( string name ) ;
public weak bool active { get; } ;
public weak string crypted_password { get; set; } ;
public weak string full_name { get; set; } ;
public weak string home_directory { get; set; } ;
public weak string home_phone { get; set; } ;
public weak string name { get; construct } ;
public weak string other_data { get; set; } ;
public weak string password { set; } ;
public weak string room_number { get; set; } ;
public weak string shell { get; set; } ;
public weak int uid { get; set; } ;
public weak string work_phone { get; set; } ;
public bool get_active ( ) ;
public weak string get_full_name ( ) ;
public weak string get_home_directory ( ) ;
public weak string get_home_phone_number ( ) ;
public weak string get_login_name ( ) ;
public weak Group get_main_group ( ) ;
public weak string get_other_data ( ) ;
public weak string get_room_number ( ) ;
public weak string get_shell ( ) ;
public long get_uid ( ) ;
public weak string get_work_phone_number ( ) ;
public void set_crypted_password ( string crypted_password ) ;
public void set_full_name ( string full_name ) ;
public void set_home_directory ( string home_directory ) ;
public void set_home_phone_number ( string phone_number ) ;
public void set_main_group ( Group main_group ) ;
public void set_other_data ( string data ) ;
public void set_password ( string password ) ;
public void set_room_number ( string room_number ) ;
public void set_shell ( string shell ) ;
public void set_uid ( long uid ) ;
public void set_work_phone_number ( string phone_number ) ;
Created by Valadoc