1 package org.andromda.cartridges.jbpm.metafacades;
2
3
4
5
6
7
8 public class JBpmEndStateLogicImpl
9 extends JBpmEndStateLogic
10 {
11 private static final long serialVersionUID = 34L;
12
13
14
15
16 public JBpmEndStateLogicImpl (Object metaObject, String context)
17 {
18 super (metaObject, context);
19 }
20
21
22
23
24
25
26 @Override
27 public String getNodeClassName()
28 {
29 return this.getSuperJBpmEventState().getNodeClassName();
30 }
31
32
33
34 @Override
35 public String getNodePackageName()
36 {
37 return this.getSuperJBpmEventState().getNodePackageName();
38 }
39
40
41
42 @Override
43 public JBpmProcessDefinition getProcessDefinition()
44 {
45 return this.getSuperJBpmEventState().getProcessDefinition();
46 }
47
48
49
50 @Override
51 public boolean isContainedInBusinessProcess()
52 {
53 return this.getSuperJBpmEventState().isContainedInBusinessProcess();
54 }
55 }