gio-unix-2.0: Add DesktopAppInfo.launch_uris_as_manager_with_fds()
[vala-gnome.git] / libvaladoc / content / contentelement.vala
blob13e99e3dd9e54db141cf6bdbf1c4e046ddabb2bc
1 /* contentelement.vala
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
20 * Author:
21 * Didier 'Ptitjes Villevalois <ptitjes@free.fr>
25 public abstract class Valadoc.Content.ContentElement : Object {
26 public ContentElement parent { get; internal set; }
28 public abstract ContentElement copy (ContentElement? new_parent = null);
31 public virtual void configure (Settings settings, ResourceLocator locator) {
34 public abstract void check (Api.Tree api_root, Api.Node container, string file_path,
35 ErrorReporter reporter, Settings settings);
37 public abstract void accept (ContentVisitor visitor);
39 public abstract bool is_empty ();
41 public virtual void accept_children (ContentVisitor visitor) {