1 package org.andromda.metafacades.uml14;
2
3 import java.util.Collection;
4 import org.omg.uml.behavioralelements.commonbehavior.Link;
5
6
7
8
9
10
11
12 public class LinkFacadeLogicImpl
13 extends LinkFacadeLogic
14 {
15 private static final long serialVersionUID = -9015446491643027873L;
16
17
18
19
20
21 public LinkFacadeLogicImpl (Link metaObject, String context)
22 {
23 super (metaObject, context);
24 }
25
26
27
28
29 protected Collection handleGetLinkEnds()
30 {
31 return this.metaObject.getConnection();
32 }
33 }