Clone
Gustaf Neumann <neumann@wu-wien.ac.at>
committed
on 23 Sep 19
improve spelling
define-incrementals + 7 more
doc/configure.man (+1 -1)
1 1 [comment {-*- tcl -*- nx::configure manpage}]
2 2
3 3 [include version.inc]
4 4 [manpage_begin nx::configure 3 [vset VERSION]]
5 5
6   [copyright { 2014 Stefan Sobernig <stefan.sobernig@wu.ac.at>, Gustaf Neumann <gustaf.neumann@wu.ac.at>; available under the Creative Commons Attribution 3.0 Austria license (CC BY 3.0 AT).}]
  6 [copyright {2014-16 Stefan Sobernig <stefan.sobernig@wu.ac.at>, Gustaf Neumann <gustaf.neumann@wu.ac.at>; available under the Creative Commons Attribution 3.0 Austria license (CC BY 3.0 AT).}]
7 7
8 8 [titledesc {Get and set configuration options on the object system}]
9 9 [moddesc {NX API}]
10 10
11 11 [description]
12 12
13 13 [list_begin definitions]
14 14
15 15 [call [cmd "configure"] [arg option] [opt [arg arg]]]
16 16
17 17 This command sets and retrieves options for the NX object system. Legal configuration options are:
18 18
19 19 [list_begin itemized]
20 20
21 21 [item] [option "defaultMethodCallProtection"] returns the currently active call-protection level used as default for newly defined method implementations (if not specified explicitly by a method definition), if [arg arg] is not provided. If [arg arg] is set, this default call-protection level is re-set to any of the available ones: [const public], [const private], [const protected].
22 22
23 23 [item] [option "defaultAccessor"]  returns the currently active call-protection level used as the default for newly defined properties (if not specified explicitly by a property definition), if [arg arg] is not provided. If [arg arg] is set, this default call-protection level is re-set to any of the following values: [const public], [const private], [const protected], or [const none]. [const none] indicates that no accessors (getter/setter methods) will be generated for newly defined properties, if not requested explicitly.
24 24
25 25 [list_end]
26 26