Coverage Report - org.argouml.model.euml.PseudostateKindEUMLImpl
 
Classes in this File Line Coverage Branch Coverage Complexity
PseudostateKindEUMLImpl
0%
0/11
N/A
1
 
 1  
 // $Id: PseudostateKindEUMLImpl.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 implementation 
 11  
  *******************************************************************************/
 12  
 
 13  
 package org.argouml.model.euml;
 14  
 
 15  
 import org.argouml.model.PseudostateKind;
 16  
 
 17  
 /**
 18  
  * The Eclipse UML2 implementation of PseudoStateKind.  An enumeration
 19  
  * of all the values that a PseudoState can have.  EntryPoint, ExitPoint,
 20  
  * and Terminate are new for UML 2.x.
 21  
  * 
 22  
  * @author Tom Morris
 23  
  */
 24  0
 class PseudostateKindEUMLImpl implements PseudostateKind {
 25  
 
 26  
     public Object getChoice() {
 27  0
         return org.eclipse.uml2.uml.PseudostateKind.CHOICE_LITERAL;
 28  
     }
 29  
 
 30  
     public Object getDeepHistory() {
 31  0
         return org.eclipse.uml2.uml.PseudostateKind.DEEP_HISTORY_LITERAL;
 32  
     }
 33  
 
 34  
     public Object getEntryPoint() {
 35  0
         return org.eclipse.uml2.uml.PseudostateKind.ENTRY_POINT_LITERAL;        
 36  
     }
 37  
  
 38  
     public Object getExitPoint() {
 39  0
         return org.eclipse.uml2.uml.PseudostateKind.EXIT_POINT_LITERAL;        
 40  
     }
 41  
    
 42  
     public Object getFork() {
 43  0
         return org.eclipse.uml2.uml.PseudostateKind.FORK_LITERAL;
 44  
     }
 45  
 
 46  
     public Object getInitial() {
 47  0
         return org.eclipse.uml2.uml.PseudostateKind.INITIAL_LITERAL;
 48  
     }
 49  
 
 50  
     public Object getJoin() {
 51  0
         return org.eclipse.uml2.uml.PseudostateKind.JOIN_LITERAL;
 52  
     }
 53  
 
 54  
     public Object getJunction() {
 55  0
         return org.eclipse.uml2.uml.PseudostateKind.JUNCTION_LITERAL;
 56  
     }
 57  
 
 58  
     public Object getShallowHistory() {
 59  0
         return org.eclipse.uml2.uml.PseudostateKind.SHALLOW_HISTORY_LITERAL;
 60  
     }
 61  
  
 62  
     public Object getTerminate() {
 63  0
         return org.eclipse.uml2.uml.PseudostateKind.TERMINATE_LITERAL;        
 64  
     }
 65  
 
 66  
 }