Fix array length handling for get_attributes method
[vala-lang.git] / ccode / valaccodefragment.vala
blob1c6b266addc6d68765285ad91eb46d4f5cc85e15
1 /* valaccodefragment.vala
3 * Copyright (C) 2006-2007 Jürg Billeter
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 * Author:
20 * Jürg Billeter <j@bitron.ch>
23 using GLib;
24 using Gee;
26 /**
27 * Represents a container for C code nodes.
29 public class Vala.CCodeFragment : CCodeNode {
30 private Gee.List<CCodeNode> children = new ArrayList<CCodeNode> ();
32 /**
33 * Appends the specified code node to this code fragment.
35 * @param node a C code node
37 public void append (CCodeNode node) {
38 children.add (node);
41 /**
42 * Returns a copy of the list of children.
44 * @return children list
46 public Gee.List<CCodeNode> get_children () {
47 return new ReadOnlyList<CCodeNode> (children);
50 public override void write (CCodeWriter writer) {
51 foreach (CCodeNode node in children) {
52 node.write (writer);
56 public override void write_declaration (CCodeWriter writer) {
57 foreach (CCodeNode node in children) {
58 node.write_declaration (writer);
62 public override void write_combined (CCodeWriter writer) {
63 foreach (CCodeNode node in children) {
64 node.write_combined (writer);