]> OCCT Git - occt-wok.git/commitdiff
OCC8524 Modification of cdl files in order to improve extraction of description of...
authorcascade <cascade@opencascade.com>
Fri, 8 Apr 2005 22:09:06 +0000 (22:09 +0000)
committercascade <cascade@opencascade.com>
Fri, 8 Apr 2005 22:09:06 +0000 (22:09 +0000)
src/WOKTools/WOKTools_DataMap.cdl
src/WOKTools/WOKTools_DoubleMap.cdl
src/WOKTools/WOKTools_GGraph.cdl
src/WOKTools/WOKTools_Map.cdl

index 49af10d706e3bcc05854d88c816850ae8262f8a5..df72c2279478df3dcf81a8d4093dbffc6f924dce 100755 (executable)
@@ -33,7 +33,7 @@ raises
     class DataMapIterator inherits BasicMapIterator from WOKTools
        ---Purpose: Provides iteration on the  content  of a map.  The
        -- iteration  methods are inherited  from  the BasicMapIterator. 
-       ---Warning: While using an iterator on a map if the content of
+       --  Warning: While using an iterator on a map if the content of
        -- the map  is   modified  during the  iteration  the
        -- result is unpredictable.
 
@@ -133,7 +133,7 @@ is
     Find(me; K : TheKey) returns any TheItem
        ---Level: Public
        ---Purpose: Returns  the Item stored  with the Key  <K> in the Map. 
-        ---Trigger: An exception is raised when <K> is not in the map.
+        --  Trigger: An exception is raised when <K> is not in the map.
     raises NoSuchObject from Standard  
        ---C++: alias operator()
        ---C++: return const &
@@ -144,7 +144,7 @@ is
        ---Purpose: Returns the  Item stored with  the Key  <K> in the
        -- Map. This Item can be   modified with  the  syntax
        -- aMap(K) = newItem; 
-        ---Trigger: An exception is raised when <K> is not in the map.
+        --  Trigger: An exception is raised when <K> is not in the map.
        ---C++: alias operator()
        ---C++: return &
     raises NoSuchObject from Standard 
index b52c473690a4e2b0b05ebb477c4eecc55a2e1be5..a93502bb621c04c84143ef6d68cb2fe343bb69b1 100755 (executable)
@@ -11,8 +11,7 @@ generic class DoubleMap from WOKTools (TheKey1    as any;
 inherits BasicMap from WOKTools
 
        ---Purpose: The DoubleMap  is used to  bind  pairs (Key1,Key2)
-       -- and retrieve them in linear time.
-       -- 
+       -- and retrieve them in linear time. 
        -- See Map from WOKTools for a discussion about the number of buckets.
        
 raises
@@ -25,7 +24,7 @@ raises
        ---Purpose: Provides iteration on the  content  of a map.
        -- The iteration methods are inherited from  the BasicMapIterator. 
        --          
-       ---Warning: While using an iterator on a map if the content of
+       --  Warning: While using an iterator on a map if the content of
        -- the map is modified during the iteration the result is 
        -- unpredictable.
        
@@ -113,7 +112,7 @@ is
     Bind(me : in out; K1 : TheKey1; K2 : TheKey2)
        ---Level: Public
        ---Purpose: Adds the pair <K1>,<K2> to the map.
-       ---Trigger: An exception is raised if K1 or K2 are already bound.          
+       --  Trigger: An exception is raised if K1 or K2 are already bound.          
     raises MultiplyDefined from Standard 
     is static;
     
index 2bf7f05365a508c26f0ed584ab6f8111b01de61d..e43916f9a342f7aa22728869f2b3b189f82e3ba2 100755 (executable)
@@ -217,14 +217,14 @@ class GEdge
       raises NullObject;
     ---Level: Public
     ---Purpose: Remove a node from <me>.
-    ---Warning: All successors of me are also deleted.
+    --  Warning: All successors of me are also deleted.
 
     DelNode(me     : mutable;
            anItem : GraphItem)
       raises NullObject;
     ---Level: Public
     ---Purpose: Remove all nodes from <me> having an item <GraphItem>.
-    ---Warning: All successors of me are also deleted.
+    --  Warning: All successors of me are also deleted.
     
     DelEdge(me     : mutable;
            anEdge : GEdge from WOKTools)
@@ -244,7 +244,7 @@ class GEdge
       raises NullObject ;
     ---Level: Public
     ---Purpose: Returns a set of paths between two nodes.
-    ---Warning: It return a set in which all elements are displayed
+    --  Warning: It return a set in which all elements are displayed
     --          in <aView>.    
  
     BestPath(me                : mutable; 
@@ -255,7 +255,7 @@ class GEdge
     ---Purpose: Returns a set of the smallest paths between
     --          two nodes of <me>. (if there is more than one
     --          path, they had the same length)
-    ---Warning: It return a set in which all elements are displayed
+    --  Warning: It return a set in which all elements are displayed
     --          in <aView>.    
  
     Find(me     : mutable; 
@@ -292,7 +292,7 @@ class GEdge
       raises NullObject;
     ---Level: Public
     ---Purpose: Returns a sequence of the heirs of aNode at <aLevel> 
-    ---Warning: If <aLevel> is zero, returns a Sequence of all Heirs of aNode.
+    --  Warning: If <aLevel> is zero, returns a Sequence of all Heirs of aNode.
   
     Brothers(me     : mutable;
             aNode  : GNode from WOKTools)      
index 3c4178894410291c858fad6ab1ae8e8bd70b3b12..8f2507f766c7306609334d7e10adace376656baa 100755 (executable)
@@ -18,7 +18,7 @@ raises
        ---Purpose: Provides iteration on  the content of  a map.  The
        -- iteration    methods    are  inherited   from  the
        -- BasicMapIterator.
-       ---Warning: While using an iterator on a map if the content of
+       --  Warning: While using an iterator on a map if the content of
        -- the map  is   modified  during the  iteration  the
        -- result is unpredictable.