public class Field : Member, Lockable {
public DataType type_reference { get; set; } ;
public Expression initializer { get; set; } ;
public weak bool instance { get; set; } ;
public weak bool is_volatile { get; set; } ;
public weak bool no_array_length { get; set; } ;
public Field ( string name,
DataType type_reference,
Expression? initializer,
SourceReference? source_reference = null ) ;
public string get_cname ( ) ;
public void set_cname ( string cname ) ;
public string get_default_cname ( ) ;
public void process_attributes ( ) ;
}

public Field ( string name,
DataType type_reference,
Expression? initializer,
SourceReference? source_reference = null ) ;
public DataType type_reference { get; set; } ;
public Expression initializer { get; set; } ;
public weak bool instance { get; set; } ;
public weak bool is_volatile { get; set; } ;
public weak bool no_array_length { get; set; } ;
public string get_cname ( ) ;
public void set_cname ( string cname ) ;
public string get_default_cname ( ) ;
public void process_attributes ( ) ;
Created by Valadoc