3 * Copyright (C) 2008-2009 Didier Villevalois
4 * Copyright (C) 2008-2012 Florian Brosch
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 * Didier 'Ptitjes Villevalois <ptitjes@free.fr>
25 public class Valadoc
.Content
.TableRow
: ContentElement
{
26 public Vala
.List
<TableCell
> cells
{
32 private Vala
.List
<TableCell
> _cells
;
34 internal TableRow () {
36 _cells
= new Vala
.ArrayList
<TableCell
> ();
39 public override void check (Api
.Tree api_root
, Api
.Node container
, string file_path
,
40 ErrorReporter reporter
, Settings settings
)
42 // Check individual cells
43 foreach (var cell
in _cells
) {
45 cell
.check (api_root
, container
, file_path
, reporter
, settings
);
49 public override void accept (ContentVisitor visitor
) {
50 visitor
.visit_table_row (this
);
53 public override void accept_children (ContentVisitor visitor
) {
54 foreach (TableCell element
in _cells
) {
55 element
.accept (visitor
);
59 public override bool is_empty () {
63 public override ContentElement
copy (ContentElement? new_parent
= null) {
64 TableRow row
= new
TableRow ();
65 row
.parent
= new_parent
;
67 foreach (TableCell cell
in _cells
) {
68 TableCell copy
= cell
.copy (row
) as TableCell
;