blob: fa72a1d61f51bcdfe6413f5f3ace5beb755c1b1b (
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: SelectUnion.cdl
-- Created: Mon Jan 11 12:34:05 1993
-- Author: Christian CAILLET
-- <cky@sdsun1>
---Copyright: Matra Datavision 1993
class SelectUnion from IFSelect inherits SelectCombine
---Purpose : A SelectUnion cumulates the Entities issued from several other
-- Selections (union of results : "OR" operator)
uses AsciiString from TCollection, EntityIterator, Graph
is
Create returns mutable SelectUnion;
---Purpose : Creates an empty SelectUnion
RootResult (me; G : Graph) returns EntityIterator;
---Purpose : Returns the list of selected Entities, which is the addition
-- result from all input selections. Uniqueness is guaranteed.
Label (me) returns AsciiString from TCollection;
---Purpose : Returns a text defining the criterium : "Union (OR)"
end SelectUnion;
|