Wiki

Changes between Initial Version and Version 1 of Namespace

Show
Ignore:
Timestamp:
10/13/08 06:49:29 (16 years ago)
Author:
hopscc
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Namespace

    v1 v1  
     1= Namespace = 
     2{{{ 
     3namespace <namespaceId> 
     4}}} 
     5 
     6Declare the namespace the (indented) following content belongs to. 
     7 
     8 
     9<namespaceId> may be a single Toplevel Identifier ([A-Z][a-zA-Z0-9_]*) or a sequence of Identifiers separated by '.'.[[BR]] 
     10 
     11Each Identifier within the Namespace sequence must start with an uppercase letter. 
     12 
     13May contain 
     14   * [wiki:DocString DocString] 
     15   * [wiki:Class Class Definition] 
     16   * [wiki:Interface Interface Definition] 
     17   * [wiki:Struct Structure Definition] 
     18   * [wiki:Enum Enumeration] 
     19   * [wiki:Sig Signature ] 
     20   * [wiki:Extends Extension Definition ] 
     21 
     22== Example == 
     23{{{ 
     24namespace Test 
     25 ... 
     26 
     27namespace Foo.Bar.Baz 
     28   ... 
     29}}} 
     30 
     31