public class Property : Member, Lockable {
public DataType type_reference { get; set; } ;
public PropertyAccessor? get_accessor { get; set; } ;
public PropertyAccessor? set_accessor { get; set; } ;
public FormalParameter this_parameter { get; set; } ;
public weak bool notify { get; set; } ;
public weak bool no_accessor_method { get; set; } ;
public weak bool interface_only { get; set; } ;
public weak bool is_abstract { get; set; } ;
public weak bool is_virtual { get; set; } ;
public weak bool overrides { get; set; } ;
public Field field { get; set; } ;
public weak bool instance { get; set; } ;
public weak Property base_property { get; set; } ;
public Property base_interface_property { get; set; } ;
public Expression default_expression { get; set; } ;
public string nick { get; set; } ;
public string blurb { get; set; } ;
public Property ( string _name,
DataType type,
PropertyAccessor? _get_accessor,
PropertyAccessor? _set_accessor,
SourceReference source ) ;
public string get_upper_case_cname ( ) ;
public CCodeConstant get_canonical_cconstant ( ) ;
public void process_attributes ( ) ;
public bool equals ( Property prop2 ) ;
}

public Property ( string _name,
DataType type,
PropertyAccessor? _get_accessor,
PropertyAccessor? _set_accessor,
SourceReference source ) ;
public DataType type_reference { get; set; } ;
public PropertyAccessor? get_accessor { get; set; } ;
public PropertyAccessor? set_accessor { get; set; } ;
public FormalParameter this_parameter { get; set; } ;
public weak bool notify { get; set; } ;
public weak bool no_accessor_method { get; set; } ;
public weak bool interface_only { get; set; } ;
public weak bool is_abstract { get; set; } ;
public weak bool is_virtual { get; set; } ;
public weak bool overrides { get; set; } ;
public Field field { get; set; } ;
public weak bool instance { get; set; } ;
public weak Property base_property { get; set; } ;
public Property base_interface_property { get; set; } ;
public Expression default_expression { get; set; } ;
public string nick { get; set; } ;
public string blurb { get; set; } ;
public string get_upper_case_cname ( ) ;
public CCodeConstant get_canonical_cconstant ( ) ;
public void process_attributes ( ) ;
public bool equals ( Property prop2 ) ;
Created by Valadoc