Coverage Report - org.argouml.model.euml.CommonBehaviorFactoryEUMLImpl
 
Classes in this File Line Coverage Branch Coverage Complexity
CommonBehaviorFactoryEUMLImpl
0%
0/33
N/A
1
 
 1  
 // $Id: CommonBehaviorFactoryEUMLImpl.java 18220 2010-04-08 20:37:15Z tfmorris $
 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 org.argouml.model.AbstractModelFactory;
 15  
 import org.argouml.model.CommonBehaviorFactory;
 16  
 import org.eclipse.uml2.uml.OpaqueAction;
 17  
 import org.eclipse.uml2.uml.Signal;
 18  
 import org.eclipse.uml2.uml.UMLFactory;
 19  
 
 20  
 /**
 21  
  * The implementation of the CommonBehaviorFactory for EUML2.
 22  
  */
 23  0
 class CommonBehaviorFactoryEUMLImpl implements CommonBehaviorFactory,
 24  
         AbstractModelFactory {
 25  
 
 26  
     /**
 27  
      * The model implementation.
 28  
      */
 29  
     private EUMLModelImplementation modelImpl;
 30  
 
 31  
     /**
 32  
      * Constructor.
 33  
      *
 34  
      * @param implementation The ModelImplementation.
 35  
      */
 36  0
     public CommonBehaviorFactoryEUMLImpl(EUMLModelImplementation implementation) {
 37  0
         modelImpl = implementation;
 38  0
     }
 39  
 
 40  
     public Object buildAction(Object message) {
 41  
         // TODO: Auto-generated method stub
 42  0
         return null;
 43  
     }
 44  
 
 45  
     public Object buildCallAction(Object oper, String name) {
 46  
         // TODO: Auto-generated method stub
 47  0
         return null;
 48  
     }
 49  
 
 50  
     public Object buildLink(Object fromInstance, Object toInstance) {
 51  
         // TODO: Auto-generated method stub
 52  0
         return null;
 53  
     }
 54  
 
 55  
     public Object buildReception(Object aClassifier) {
 56  
         // TODO: Auto-generated method stub
 57  0
         return null;
 58  
     }
 59  
 
 60  
     public Object buildSignal(Object element) {
 61  
         // TODO: Auto-generated method stub
 62  0
         return null;
 63  
     }
 64  
 
 65  
     public Object buildStimulus(Object link) {
 66  
         // TODO: Auto-generated method stub
 67  0
         return null;
 68  
     }
 69  
 
 70  
     public Object buildUninterpretedAction(Object actionState) {
 71  
         // TODO: Auto-generated method stub
 72  0
         return null;
 73  
     }
 74  
 
 75  
     public Object createActionSequence() {
 76  
         // TODO: Auto-generated method stub
 77  0
         return null;
 78  
     }
 79  
 
 80  
     public Object createArgument() {
 81  
         // TODO: Auto-generated method stub
 82  0
         return null;
 83  
     }
 84  
 
 85  
     public Object createAttributeLink() {
 86  
         // TODO: Auto-generated method stub
 87  0
         return null;
 88  
     }
 89  
 
 90  
     public Object createCallAction() {
 91  
 
 92  
         // TODO: Auto-generated method stub
 93  0
         return null;
 94  
     }
 95  
 
 96  
     public Object createComponentInstance() {
 97  
         // TODO: Auto-generated method stub
 98  0
         return null;
 99  
     }
 100  
 
 101  
     public Object createCreateAction() {
 102  0
         return UMLFactory.eINSTANCE.createCreateObjectAction();
 103  
     }
 104  
 
 105  
     public Object createDataValue() {
 106  
         // TODO: Auto-generated method stub
 107  0
         return null;
 108  
     }
 109  
 
 110  
     public Object createDestroyAction() {
 111  0
         return UMLFactory.eINSTANCE.createDestroyObjectAction();
 112  
     }
 113  
 
 114  
     public Object createException() {
 115  
         // TODO: Auto-generated method stub
 116  0
         return null;
 117  
     }
 118  
 
 119  
     public Object createLink() {
 120  
         // TODO: Auto-generated method stub
 121  0
         return null;
 122  
     }
 123  
 
 124  
     public Object createLinkEnd() {
 125  
         // TODO: Auto-generated method stub
 126  0
         return null;
 127  
     }
 128  
 
 129  
     public Object createLinkObject() {
 130  
         // TODO: Auto-generated method stub
 131  0
         return null;
 132  
     }
 133  
 
 134  
     public Object createNodeInstance() {
 135  
         // TODO: Auto-generated method stub
 136  0
         return null;
 137  
     }
 138  
 
 139  
     public Object createObject() {
 140  
         // TODO: Auto-generated method stub
 141  0
         return null;
 142  
     }
 143  
 
 144  
     public Object createReception() {
 145  0
         return UMLFactory.eINSTANCE.createReception();
 146  
     }
 147  
 
 148  
     public Object createReturnAction() {
 149  
         // TODO: Auto-generated method stub
 150  0
         return null;
 151  
     }
 152  
 
 153  
     public Object createSendAction() {
 154  0
         return UMLFactory.eINSTANCE.createSendObjectAction();
 155  
     }
 156  
 
 157  
     public Signal createSignal() {
 158  0
         return UMLFactory.eINSTANCE.createSignal();
 159  
     }
 160  
 
 161  
     public Object createStimulus() {
 162  
         // TODO: Auto-generated method stub
 163  0
         return null;
 164  
     }
 165  
 
 166  
     public Object createSubsystemInstance() {
 167  
         // TODO: Auto-generated method stub
 168  0
         return null;
 169  
     }
 170  
 
 171  
     public Object createTerminateAction() {
 172  
         // TODO: Auto-generated method stub
 173  0
         return null;
 174  
     }
 175  
 
 176  
     public OpaqueAction createUninterpretedAction() {
 177  
         // TODO: Auto-generated method stub
 178  0
         return null;
 179  
     }
 180  
 
 181  
 
 182  
 }