summaryrefslogtreecommitdiff
path: root/libvaladoc/api/typesymbol.vala
blob: 17c3501c8554c9ea23e5fd720f13854a881b2f97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
/* typesymbol.vala
 *
 * Copyright (C) 2008-2009 Florian Brosch, Didier Villevalois
 * Copyright (C) 2011      Florian Brosch
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA
 *
 * Author:
 * 	Didier 'Ptitjes Villevalois <ptitjes@free.fr>
 */


/**
 * Represents a runtime data type.
 */
public abstract class Valadoc.Api.TypeSymbol : Symbol {
	private SourceComment? source_comment;
	private string? type_macro_name;
	private string? is_type_macro_name;
	private string? type_cast_macro_name;
	private string? type_function_name;

	public TypeSymbol (Node parent, SourceFile file, string name, SymbolAccessibility accessibility,
					   SourceComment? comment, string? type_macro_name, string? is_type_macro_name,
					   string? type_cast_macro_name, string? type_function_name, bool is_basic_type,
					   Vala.TypeSymbol data)
	{
		base (parent, file, name, accessibility, data);

		this.type_cast_macro_name = type_cast_macro_name;
		this.is_type_macro_name = is_type_macro_name;
		this.type_function_name = type_function_name;
		this.type_macro_name = type_macro_name;

		this.is_basic_type = is_basic_type;
		this.source_comment = comment;
	}

	/**
	 * Specifies whether this symbol is a basic type (string, int, char, etc)
	 */
	public bool is_basic_type {
		private set;
		get;
	}

	/**
	 * Gets the name of the GType macro which represents the type symbol
	 */
	public string get_type_macro_name () {
		return type_macro_name;
	}

	/**
	 * Gets the name of the GType macro which casts a type instance to the given type.
	 */
	public string get_type_cast_macro_name () {
		return type_cast_macro_name;
	}

	/**
	 * Gets the name of the GType macro which determines whether a type instance is of a given type.
	 */
	public string get_is_type_macro_name () {
		return is_type_macro_name;
	}

	/**
	 * Gets the name of the get_type() function which represents the type symbol
	 */
	public string get_type_function_name () {
		return type_function_name;
	}

	/**
	 * {@inheritDoc}
	 */
	internal override void parse_comments (Settings settings, DocumentationParser parser) {
		if (documentation != null) {
			return ;
		}

		if (source_comment != null) {
			documentation = parser.parse (this, source_comment);
		}

		base.parse_comments (settings, parser);
	}

	/**
	 * {@inheritDoc}
	 */
	internal override void check_comments (Settings settings, DocumentationParser parser) {
		if (documentation != null) {
			parser.check (this, documentation);
		}

		base.check_comments (settings, parser);
	}
}