vala-1.0 Reference Manual

Synopsis

public class SourceReference : Object  {
    public    weak SourceFile           file                      { get; set; } ;
    public    weak int                  first_line                { get; set; } ;
    public    weak int                  first_column              { get; set; } ;
    public    weak int                  last_line                 { get; set; } ;
    public    weak int                  last_column               { get; set; } ;
    public    string                    comment                   { get; set; } ;


    public                              SourceReference           ( SourceFile          _file,
                                                                    int                 _first_line = ÿ%,
                                                                    int                 _first_column = ÿ%,
                                                                    int                 _last_line = ÿ%,
                                                                    int                 _last_column = ÿ% ) ;
    public                              SourceReference.with_comment ( SourceFile          _file,
                                                                    int                 _first_line,
                                                                    int                 _first_column,
                                                                    int                 _last_line,
                                                                    int                 _last_column,
                                                                    string?             _comment ) ;


    public    string                    to_string                 (  ) ;
}

SourceReference Description

Details

Constructor Details

SourceReference ()
    public                              SourceReference           ( SourceFile          _file,
                                                                    int                 _first_line = ÿ%,
                                                                    int                 _first_column = ÿ%,
                                                                    int                 _last_line = ÿ%,
                                                                    int                 _last_column = ÿ% ) ;		

SourceReference.with_comment ()
    public                              SourceReference.with_comment ( SourceFile          _file,
                                                                    int                 _first_line,
                                                                    int                 _first_column,
                                                                    int                 _last_line,
                                                                    int                 _last_column,
                                                                    string?             _comment ) ;		

Field Details

Signal Details

Property Details

file
    public    weak SourceFile           file                      { get; set; } ;		

first_line
    public    weak int                  first_line                { get; set; } ;		

first_column
    public    weak int                  first_column              { get; set; } ;		

last_line
    public    weak int                  last_line                 { get; set; } ;		

last_column
    public    weak int                  last_column               { get; set; } ;		

comment
    public    string                    comment                   { get; set; } ;		

Method Details

to_string ()
    public    string                    to_string                 (  ) ;		


Created by Valadoc