1
2
3
4
5 package org.andromda.metafacades.uml14;
6
7 import java.util.Collection;
8 import org.andromda.core.metafacade.MetafacadeBase;
9 import org.andromda.core.metafacade.ModelValidationMessage;
10 import org.andromda.metafacades.uml.ClassifierFacade;
11 import org.andromda.metafacades.uml.ObjectFlowStateFacade;
12 import org.apache.log4j.Logger;
13 import org.omg.uml.behavioralelements.activitygraphs.ObjectFlowState;
14
15
16
17
18
19
20
21
22
23 public abstract class ObjectFlowStateFacadeLogic
24 extends StateFacadeLogicImpl
25 implements ObjectFlowStateFacade
26 {
27
28
29
30
31 protected ObjectFlowState metaObject;
32
33
34
35
36
37 protected ObjectFlowStateFacadeLogic(ObjectFlowState metaObjectIn, String context)
38 {
39 super(metaObjectIn, getContext(context));
40 this.metaObject = metaObjectIn;
41 }
42
43
44
45
46 private static final Logger logger = Logger.getLogger(ObjectFlowStateFacadeLogic.class);
47
48
49
50
51
52
53 private static String getContext(String context)
54 {
55 if (context == null)
56 {
57 context = "org.andromda.metafacades.uml.ObjectFlowStateFacade";
58 }
59 return context;
60 }
61
62
63
64
65 @Override
66 public void resetMetafacadeContext(String context)
67 {
68 if (!this.contextRoot)
69 {
70 context = getContext(context);
71 setMetafacadeContext (context);
72 }
73 }
74
75
76
77
78
79 public boolean isObjectFlowStateFacadeMetaType()
80 {
81 return true;
82 }
83
84
85
86
87
88
89
90
91
92
93
94 public final ClassifierFacade getType()
95 {
96 ClassifierFacade getType1r = null;
97
98 Object result = handleGetType();
99 MetafacadeBase shieldedResult = this.shieldedElement(result);
100 try
101 {
102 getType1r = (ClassifierFacade)shieldedResult;
103 }
104 catch (ClassCastException ex)
105 {
106
107 ObjectFlowStateFacadeLogic.logger.warn("incorrect metafacade cast for ObjectFlowStateFacadeLogic.getType ClassifierFacade " + result + ": " + shieldedResult);
108 }
109
110 return getType1r;
111 }
112
113
114
115
116
117 protected abstract Object handleGetType();
118
119
120
121
122
123 @Override
124 public void validateInvariants(Collection<ModelValidationMessage> validationMessages)
125 {
126 super.validateInvariants(validationMessages);
127 }
128 }