| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| OutRI |
|
| 0.0;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 Out 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 OutRI extends GroundedModeRI implements Out { | |
| 42 | ||
| 43 | /** | |
| 44 | * Default Constructor | |
| 45 | * | |
| 46 | * @param concept A Concept object with which the out mode is | |
| 47 | * initialized | |
| 48 | */ | |
| 49 | public OutRI(Concept concept){ | |
| 50 | 0 | super(concept); |
| 51 | 0 | } |
| 52 | ||
| 53 | /** | |
| 54 | * @param concept | |
| 55 | * A Concept object which is associated | |
| 56 | * with the Mode | |
| 57 | * @param g | |
| 58 | * A set of Grounding object definitions | |
| 59 | */ | |
| 60 | public OutRI(Concept concept, Set<Grounding> g) { | |
| 61 | 0 | super(concept, g); |
| 62 | 0 | } |
| 63 | ||
| 64 | public OutRI(Relation relation){ | |
| 65 | 0 | super(relation); |
| 66 | 0 | } |
| 67 | ||
| 68 | public OutRI(Relation relation, Set<Grounding> g){ | |
| 69 | 0 | super(relation,g); |
| 70 | 0 | } |
| 71 | } |