1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 package org.caleigo.core;
20
21
22 /*** IEntitySelection defines the interface to an entity collection class that
23 * can store zero or more IEntity objects. The entities stored by this interface
24 * are type specified and must be defined by a single IEntityDescriptor.
25 * The IEntitySelection differs from IEntityCollection by using a contained
26 * Qualifier to define the scope of the contained entity objects.
27 *
28 * IEntitySelection is ordered and contained entities can be accesed by index.
29 * Implementations to this interface must not accept duplicate entities.
30 *
31 * @author Dennis Zikovic
32 * @version 1.00
33 *
34 *//*
35 *
36 * WHEN WHO WHY & WHAT
37 * ------------------------------------------------------------------------------
38 * 2001-07-20 Dennis Zikovic Creation
39 */
40 public interface IQualifiedSelection extends ISelection
41 {
42
43 public Qualifier getQualifier();
44 public void setQualifier(Qualifier qualifier);
45 }