Index: xotcl/doc/tutorial.html =================================================================== diff -u -raf574e7e934986818f402ee382f7cdab57feed39 -r1670c4220da681d286eae8acbac8745dd37296f9 --- xotcl/doc/tutorial.html (.../tutorial.html) (revision af574e7e934986818f402ee382f7cdab57feed39) +++ xotcl/doc/tutorial.html (.../tutorial.html) (revision 1670c4220da681d286eae8acbac8745dd37296f9) @@ -1,5 +1,5 @@ - + XOTcl - Tutorial @@ -892,15 +892,15 @@ objName info args methodName -

Returns the arguments of the specified method.

+

Returns the arguments of the specified proc (object specific method).

objName info body methodName -

Returns the body of the specified method.

+

Returns the body of the specified proc.

@@ -928,7 +928,7 @@

Returns 1 if the argument arg of - the specified method has a default value, otherwise 0. If + the specified proc has a default value, otherwise 0. If the default value exists it is stored in var.

@@ -1092,7 +1092,7 @@ table summarizes the additional info options available on classes.

-

Options for the into method on classes

+

Options for the info method on classes

- - + + + +
className info heritage ?pattern? @@ -1115,24 +1115,34 @@
className info instargs methodName

Returns the arguments of the specified method.

+

Returns the arguments of the specified instproc + (method provided to objects).

className info instbody methodName

Returns the body of the specified method.

+

Returns the body of the specified instproc.

className info instcommands ?pattern?

Returns all commands defined on the class, if pattern was not specified, otherwise it returns all - commands that match the pattern.

+ commands provided to objects that match the pattern.

className info instdefault methodName arg var

+
+

Returns 1 if the argument arg of + the specified instproc has a default value, otherwise 0. If + the default value exists it is stored in var.

+
className info subclass ?className2?

Returns a list of all subclasses of the class, if @@ -3403,7 +3413,7 @@ With this definitions, the following call is rewritten as indicated in the comment.

-  x1 Info class          ;# ::Info @class ::x1;# ::Info @class ::x1
 

When a forwarder is defined, the callee (the target command) can be