~ubuntu-branches/ubuntu/raring/rygel/raring

« back to all changes in this revision

Viewing changes to doc/reference/librygel-server/gtkdoc/ccomments/rygel-search-expression.c

  • Committer: Package Import Robot
  • Author(s): Andreas Henriksson
  • Date: 2012-09-26 22:34:15 UTC
  • mfrom: (1.3.2)
  • mto: (14.1.10 sid)
  • mto: This revision was merged to the branch mainline in revision 27.
  • Revision ID: package-import@ubuntu.com-20120926223415-mem27auv86jjrj9k
ImportedĀ UpstreamĀ versionĀ 0.16.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 * @short_description: Represents a SearchExpression tree.
4
4
 */
5
5
/**
6
 
 * RYGEL_TYPE_SEARCH_EXPRESSION
 
6
 * RYGEL_TYPE_SEARCH_EXPRESSION:
7
7
 * 
8
8
 * The type for <link linkend="RygelSearchExpression"><type>RygelSearchExpression</type></link>.
9
9
 */
10
10
/**
11
 
 * rygel_search_expression_satisfied_by
12
 
 * @self: the <link linkend="RygelSearchExpression"><type>RygelSearchExpression</type></link> instance
13
 
 */
14
 
/**
15
 
 * rygel_search_expression_to_string
16
 
 * @self: the <link linkend="RygelSearchExpression"><type>RygelSearchExpression</type></link> instance
17
 
 */
18
 
/**
19
 
 * RygelSearchExpression
 
11
 * rygel_search_expression_satisfied_by:
 
12
 * @self: the <link linkend="RygelSearchExpression"><type>RygelSearchExpression</type></link> instance
 
13
 */
 
14
/**
 
15
 * rygel_search_expression_to_string:
 
16
 * @self: the <link linkend="RygelSearchExpression"><type>RygelSearchExpression</type></link> instance
 
17
 */
 
18
/**
 
19
 * RygelSearchExpression:
20
20
 * 
21
21
 * Represents a SearchExpression tree.
22
22
 */
23
23
/**
24
 
 * rygel_search_expression_ref
 
24
 * rygel_search_expression_ref:
25
25
 * @instance: a <link linkend="RygelSearchExpression"><type>RygelSearchExpression</type></link>.
26
26
 * 
27
27
 * Increases the reference count of @object.
29
29
 * Returns: the same @object
30
30
 */
31
31
/**
32
 
 * rygel_search_expression_unref
 
32
 * rygel_search_expression_unref:
33
33
 * @instance: a <link linkend="RygelSearchExpression"><type>RygelSearchExpression</type></link>.
34
34
 * 
35
35
 * Decreases the reference count of @object. When its reference count drops to 0, the object is finalized (i.e. its memory is freed).
36
36
 */
37
37
/**
38
 
 * rygel_param_spec_search_expression
 
38
 * rygel_param_spec_search_expression:
39
39
 * @name: canonical name of the property specified
40
40
 * @nick: nick name for the property specified
41
41
 * @blurb: description of the property specified
47
47
 * See <link linkend="g-param-spec-internal"><function>g_param_spec_internal()</function></link> for details on property names.
48
48
 */
49
49
/**
50
 
 * rygel_value_set_search_expression
 
50
 * rygel_value_set_search_expression:
51
51
 * @value: a valid <link linkend="GValue"><type>GValue</type></link> of <link linkend="RYGEL-TYPE-SEARCH-EXPRESSION:CAPS"><literal>RYGEL_TYPE_SEARCH_EXPRESSION</literal></link> derived type
52
52
 * @v_object: object value to be set
53
53
 * 
58
58
 * It is important that your <link linkend="GValue"><type>GValue</type></link> holds a reference to @v_object (either its own, or one it has taken) to ensure that the object won't be destroyed while the <link linkend="GValue"><type>GValue</type></link> still exists).
59
59
 */
60
60
/**
61
 
 * rygel_value_get_search_expression
 
61
 * rygel_value_get_search_expression:
62
62
 * @value: a valid <link linkend="GValue"><type>GValue</type></link> of <link linkend="RYGEL-TYPE-SEARCH-EXPRESSION:CAPS"><literal>RYGEL_TYPE_SEARCH_EXPRESSION</literal></link> derived type
63
63
 * 
64
64
 * Get the contents of a <link linkend="RYGEL-TYPE-SEARCH-EXPRESSION:CAPS"><literal>RYGEL_TYPE_SEARCH_EXPRESSION</literal></link> derived <link linkend="GValue"><type>GValue</type></link>.
66
66
 * Returns: object contents of @value
67
67
 */
68
68
/**
69
 
 * rygel_value_take_search_expression
 
69
 * rygel_value_take_search_expression:
70
70
 * @value: a valid <link linkend="GValue"><type>GValue</type></link> of <link linkend="RYGEL-TYPE-SEARCH-EXPRESSION:CAPS"><literal>RYGEL_TYPE_SEARCH_EXPRESSION</literal></link> derived type
71
71
 * @v_object: object value to be set
72
72
 * 
74
74
 * 
75
75
 * If you want the GValue to hold its own reference to @v_object, use <link linkend="rygel-value-set-search-expression"><function>rygel_value_set_search_expression()</function></link> instead.
76
76
 */
 
77
/**
 
78
 * RygelSearchExpressionClass:
 
79
 * @satisfied_by: virtual method called by <link linkend="rygel-search-expression-satisfied-by"><function>rygel_search_expression_satisfied_by()</function></link>
 
80
 * @to_string: virtual method called by <link linkend="rygel-search-expression-to-string"><function>rygel_search_expression_to_string()</function></link>
 
81
 * @parent_class: the parent class structure
 
82
 * 
 
83
 * The class structure for <link linkend="RYGEL-TYPE-SEARCH-EXPRESSION:CAPS"><literal>RYGEL_TYPE_SEARCH_EXPRESSION</literal></link>. All the fields in this structure are private and should never be accessed directly.
 
84
 */