blob: f8417c24e46bc1e91a44d5a0bd065b4612d6f0fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
-- File: SelectShared.cdl
-- Created: Wed Nov 18 15:50:09 1992
-- Author: Christian CAILLET
-- <cky@topsn2>
---Copyright: Matra Datavision 1992
class SelectShared from IFSelect inherits SelectDeduct
---Purpose : A SelectShared selects Entities which are directly Shared
-- by the Entities of the Input list
uses AsciiString from TCollection, EntityIterator, Graph
is
Create returns mutable SelectShared;
---Purpose : Creates a SelectShared;
RootResult (me; G : Graph) returns EntityIterator;
---Purpose : Returns the list of selected entities (list of entities
-- shared by those of input list)
Label (me) returns AsciiString from TCollection;
---Purpose : Returns a text defining the criterium : "Shared (one level)"
end SelectShared;
|