Coverage Report - org.argouml.model.euml.VisibilityKindEUMLImpl
 
Classes in this File Line Coverage Branch Coverage Complexity
VisibilityKindEUMLImpl
0%
0/5
N/A
1
 
 1  
 // $Id: VisibilityKindEUMLImpl.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  
 package org.argouml.model.euml;
 13  
 
 14  
 import org.argouml.model.VisibilityKind;
 15  
 
 16  
 /**
 17  
  * The Eclipse UML2 implementation of VisibilityKind.
 18  
  * 
 19  
  * @author Tom Morris
 20  
  */
 21  0
 class VisibilityKindEUMLImpl implements VisibilityKind {
 22  
 
 23  
     public Object getPackage() {
 24  0
         return org.eclipse.uml2.uml.VisibilityKind.PACKAGE_LITERAL;
 25  
     }
 26  
 
 27  
     public Object getPrivate() {
 28  0
         return org.eclipse.uml2.uml.VisibilityKind.PRIVATE_LITERAL;
 29  
     }
 30  
 
 31  
     public Object getProtected() {
 32  0
         return org.eclipse.uml2.uml.VisibilityKind.PROTECTED_LITERAL;
 33  
     }
 34  
 
 35  
     public Object getPublic() {
 36  0
         return org.eclipse.uml2.uml.VisibilityKind.PUBLIC_LITERAL;
 37  
     }
 38  
 
 39  
 }