vala-1.0 Reference Manual

Synopsis

public class ForeachStatement : Block  {
    public    DataType                  type_reference            { get; set; } ;
    public    string                    variable_name             { get; construct set; } ;
    public    Expression                collection                { get; construct set; } ;
    public    Block                     body                      { get; set; } ;
    public    LocalVariable             element_variable          { get; set; } ;
    public    LocalVariable             collection_variable       { get; set; } ;
    public    LocalVariable             iterator_variable         { get; set; } ;


    public                              ForeachStatement          ( DataType            type_reference,
                                                                    string              variable_name,
                                                                    Expression          collection,
                                                                    Block               body,
                                                                    SourceReference     source_reference ) ;
}

ForeachStatement Description

Details

Constructor Details

ForeachStatement ()
    public                              ForeachStatement          ( DataType            type_reference,
                                                                    string              variable_name,
                                                                    Expression          collection,
                                                                    Block               body,
                                                                    SourceReference     source_reference ) ;		

Field Details

Signal Details

Property Details

type_reference
    public    DataType                  type_reference            { get; set; } ;		

variable_name
    public    string                    variable_name             { get; construct set; } ;		

collection
    public    Expression                collection                { get; construct set; } ;		

body
    public    Block                     body                      { get; set; } ;		

element_variable
    public    LocalVariable             element_variable          { get; set; } ;		

collection_variable
    public    LocalVariable             collection_variable       { get; set; } ;		

iterator_variable
    public    LocalVariable             iterator_variable         { get; set; } ;		

Method Details


Created by Valadoc