Skip to content

Package: AufteilungstypVisitor

AufteilungstypVisitor

Coverage

1: package ablaeufe.meta.visitor;
2:
3: import ablaeufe.meta.konnektortypen.Alternativetyp;
4: import ablaeufe.meta.konnektortypen.Verteilungstyp;
5:
6: /**
7: * Visitor fuer den Aufteilungstyp.
8: */
9: public interface AufteilungstypVisitor {
10:         
11:         /**
12:          * Handle Operation nach dem Visitor Muster.
13:          *
14:          * @param typ
15:          * Verteilungstyp
16:          */
17:         void handle(Verteilungstyp typ);
18:         
19:         /**
20:          * Handle Operation nach dem Visitor Muster.
21:          *
22:          * @param typ
23:          * Alternativetyp
24:          */
25:         void handle(Alternativetyp typ);
26:         
27: }