Coverage Report - org.deri.wsmo4j.choreography.signature.InRI
 
Classes in this File Line Coverage Branch Coverage Complexity
InRI
0%
0/8
N/A
0
 
 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 java.util.Set;
 22  
 
 23  
 import org.omwg.ontology.Concept;
 24  
 import org.omwg.ontology.Relation;
 25  
 import org.wsmo.service.signature.*;
 26  
 
 27  
 /**
 28  
  * Reference implementation for the In mode.
 29  
  * 
 30  
  * <pre>
 31  
  *    Created on Jul 26, 2005
 32  
  *    Committed by $Author: vassil_momtchev $
 33  
  *    $Source$
 34  
  * </pre>
 35  
  * 
 36  
  * @author Thomas Haselwanter
 37  
  * @author James Scicluna
 38  
  * 
 39  
  * @version $Revision: 1844 $ $Date: 2006-10-24 17:11:48 +0300 (Tue, 24 Oct 2006) $
 40  
  */
 41  
 public class InRI extends GroundedModeRI implements In {
 42  
 
 43  
     public InRI(Concept concept)
 44  
     {
 45  0
         super(concept);
 46  0
     }
 47  
     /**
 48  
      * @param concept
 49  
      *            A Concept object which is associated
 50  
      *            with the Mode
 51  
      * @param g
 52  
      *            A set of Grounding object definitions
 53  
      */
 54  
     public InRI(Concept concept, Set<Grounding> g) {
 55  0
         super(concept, g);
 56  0
     }
 57  
     
 58  
     public InRI(Relation relation){
 59  0
         super(relation);
 60  0
     }
 61  
     
 62  
     public InRI(Relation relation, Set<Grounding> g){
 63  0
         super(relation,g);
 64  0
     }
 65  
 }