Coverage Report - org.deri.wsmo4j.choreography.signature.ControlledRI
 
Classes in this File Line Coverage Branch Coverage Complexity
ControlledRI
0%
0/4
N/A
1
 
 1  
 /*
 2  
  wsmo4j extension - a Choreography API and Reference Implementation
 3  
 
 4  
  Copyright (c) 2005, University of Innsbruck, Austria
 5  
 
 6  
  This library is free software; you can redistribute it and/or modify it under
 7  
  the terms of the GNU Lesser General Public License as published by the Free
 8  
  Software Foundation; either version 2.1 of the License, or (at your option)
 9  
  any later version.
 10  
  This library is distributed in the hope that it will be useful, but WITHOUT
 11  
  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 12  
  FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
 13  
  details.
 14  
  You should have received a copy of the GNU Lesser General Public License along
 15  
  with this library; if not, write to the Free Software Foundation, Inc.,
 16  
  59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 17  
  */
 18  
 
 19  
 package org.deri.wsmo4j.choreography.signature;
 20  
 
 21  
 import org.omwg.ontology.Concept;
 22  
 import org.omwg.ontology.Relation;
 23  
 import org.wsmo.service.signature.*;
 24  
 
 25  
 /**
 26  
  * Reference Implementation for the Controlled mode.
 27  
  * 
 28  
  * <pre>
 29  
  *    Created on Jul 26, 2005
 30  
  *    Committed by $Author: vassil_momtchev $
 31  
  *    $Source$
 32  
  * </pre>
 33  
  * 
 34  
  * @author Thomas Haselwanter
 35  
  * @author James Scicluna
 36  
  * 
 37  
  * @version $Revision: 1844 $ $Date: 2006-10-24 17:11:48 +0300 (Tue, 24 Oct 2006) $
 38  
  */
 39  
 public class ControlledRI extends ModeRI implements Controlled {
 40  
 
 41  
     /**
 42  
      * @param concept
 43  
      *            A Concept object which is associated
 44  
      *            with the Mode
 45  
      */
 46  
     public ControlledRI(Concept concept) {
 47  0
         super(concept);
 48  0
     }
 49  
     
 50  
     public ControlledRI(Relation relation){
 51  0
         super(relation);
 52  0
     }
 53  
 }