Changeset 4510 for trunk/manuals

Show
Ignore:
Timestamp:
10/16/08 09:54:18 (3 months ago)
Author:
pmoura
Message:

Updated comparison between Logtalk nomenclature and C++ and Java nomenclatures.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/manuals/userman/nomenclature.html

    r4509 r4510  
    7373</dl> 
    7474<dl> 
     75    <dt><strong>namespace</strong></dt> 
     76        <dd>Logtalk does not support multiple identifier namespaces. All Logtalk entity identifiers share the same namespace (Logtalk entities are objects, categories, and protocols).</dd> 
     77</dl> 
     78<dl> 
    7579    <dt><strong>nested class</strong></dt> 
    7680        <dd>Logtalk does not support nested classes.</dd> 
     
    8690<dl> 
    8791    <dt><strong>virtual member function</strong></dt> 
    88         <dd>Logtalk allows any predicate defined in a class to be overridden on a descendant class. There is no <code>virtual</code> keyword in Logtalk.</dd> 
     92        <dd>There is no <code>virtual</code> keyword in Logtalk. By default, Logtalk uses dynamic binding for locating both method declarations and method definitions. Moreover, methods that are declared but not defined simply fail when called.</dd> 
    8993</dl> 
    9094