Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
ActivityGraphsHelperEUMLImpl |
|
| 1.0;1 |
1 | // $Id: ActivityGraphsHelperEUMLImpl.java 18511 2010-07-14 14:34:10Z bobtarling $ | |
2 | /******************************************************************************* | |
3 | * Copyright (c) 2007,2010 Tom Morris and other contributors | |
4 | * All rights reserved. This program and the accompanying materials | |
5 | * are made available under the terms of the Eclipse Public License v1.0 | |
6 | * which accompanies this distribution, and is available at | |
7 | * http://www.eclipse.org/legal/epl-v10.html | |
8 | * | |
9 | * Contributors: | |
10 | * Tom Morris - initial framework | |
11 | *******************************************************************************/ | |
12 | package org.argouml.model.euml; | |
13 | ||
14 | import java.util.Collection; | |
15 | ||
16 | import org.argouml.model.ActivityGraphsHelper; | |
17 | ||
18 | /** | |
19 | * The implementation of the ActivityGraphsHelper for EUML. | |
20 | */ | |
21 | class ActivityGraphsHelperEUMLImpl implements ActivityGraphsHelper { | |
22 | ||
23 | /** | |
24 | * The model implementation. | |
25 | */ | |
26 | private EUMLModelImplementation modelImpl; | |
27 | ||
28 | /** | |
29 | * Constructor. | |
30 | * | |
31 | * @param implementation | |
32 | * The ModelImplementation. | |
33 | */ | |
34 | 0 | public ActivityGraphsHelperEUMLImpl(EUMLModelImplementation implementation) { |
35 | 0 | modelImpl = implementation; |
36 | 0 | } |
37 | ||
38 | public void addContent(Object partition, Object modeElement) { | |
39 | // TODO Auto-generated method stub | |
40 | ||
41 | 0 | } |
42 | ||
43 | public void addInState(Object classifierInState, Object state) { | |
44 | // TODO Auto-generated method stub | |
45 | ||
46 | 0 | } |
47 | ||
48 | public void addParameter(Object objectFlowState, Object parameter) { | |
49 | // TODO Auto-generated method stub | |
50 | ||
51 | 0 | } |
52 | ||
53 | public Object findClassifierByName(Object ofs, String s) { | |
54 | // TODO Auto-generated method stub | |
55 | 0 | return null; |
56 | } | |
57 | ||
58 | public Object findStateByName(Object c, String s) { | |
59 | // TODO Auto-generated method stub | |
60 | 0 | return null; |
61 | } | |
62 | ||
63 | public boolean isAddingActivityGraphAllowed(Object context) { | |
64 | 0 | return (context instanceof org.eclipse.uml2.uml.Package); |
65 | } | |
66 | ||
67 | public void removeContent(Object partition, Object modeElement) { | |
68 | // TODO Auto-generated method stub | |
69 | ||
70 | 0 | } |
71 | ||
72 | public void removeParameter(Object objectFlowState, Object parameter) { | |
73 | // TODO Auto-generated method stub | |
74 | ||
75 | 0 | } |
76 | ||
77 | public void setContents(Object partition, Collection newContents) { | |
78 | // TODO Auto-generated method stub | |
79 | ||
80 | 0 | } |
81 | ||
82 | public void setInStates(Object classifierInState, Collection newStates) { | |
83 | // TODO Auto-generated method stub | |
84 | ||
85 | 0 | } |
86 | ||
87 | public void setParameters(Object objectFlowState, Collection parameters) { | |
88 | // TODO Auto-generated method stub | |
89 | ||
90 | 0 | } |
91 | ||
92 | public void setSynch(Object objectFlowState, boolean isSynch) { | |
93 | // TODO Auto-generated method stub | |
94 | ||
95 | 0 | } |
96 | ||
97 | } |