Index: doc/example-scripts/tutorial-properties.tcl =================================================================== diff -u -r05569c2382bda067f97100fb0d56ab76c1ed47ff -rb6ec624993fdb4a8cf07a124e83ebb22789f5be8 --- doc/example-scripts/tutorial-properties.tcl (.../tutorial-properties.tcl) (revision 05569c2382bda067f97100fb0d56ab76c1ed47ff) +++ doc/example-scripts/tutorial-properties.tcl (.../tutorial-properties.tcl) (revision b6ec624993fdb4a8cf07a124e83ebb22789f5be8) @@ -40,10 +40,13 @@ ? {f1 cget -y} 3 -# It is possible to add more and application specific sub-commands to -# the accessor method, but this is not covered in this -# chapter. However, when a property is defined as incremental it uses -# this feature to extend the sub-methods. +# You might wonder, why these accessor methods are needed, when the +# same behavior can be achieved via +cget+ and +configure+. The main +# difference is that the accessor methods are tailorable (the behavior +# can be modified) and extensible (more subcommands like +set+ and +# +get+ can be defined). The details, how this is done is not covered +# in this chapter. However, when a property is defined as +# +incremental+ the sub-methods are extended. # When a property is defined as +incremental+, a public accessor and # multi-valued are assumed. By specifying +incremental+ the