| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| GroundingParser |
|
| 1.0;1 |
| 1 | /* | |
| 2 | wsmo4j - a WSMO API and Reference Implementation | |
| 3 | ||
| 4 | Copyright (c) 2004-2007, Ontotext Lab. / SIRMA | |
| 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.wsmo.grounding.sawsdl.io; | |
| 20 | ||
| 21 | import java.io.Reader; | |
| 22 | ||
| 23 | import org.wsmo.grounding.sawsdl.Grounding; | |
| 24 | ||
| 25 | ||
| 26 | public interface GroundingParser { | |
| 27 | ||
| 28 | ||
| 29 | /** | |
| 30 | * Creates a grounding (possibly empty) object from an annotated or not annotated | |
| 31 | * WSDL definition input. | |
| 32 | */ | |
| 33 | public Grounding parse(Reader input) throws Exception; | |
| 34 | ||
| 35 | } | |
| 36 | ||
| 37 | /* | |
| 38 | * $Log$ | |
| 39 | * Revision 1.3 2007/04/27 17:46:31 alex_simov | |
| 40 | * javadoc added | |
| 41 | * | |
| 42 | * Revision 1.2 2007/04/24 15:31:25 alex_simov | |
| 43 | * turned into interfaces | |
| 44 | * | |
| 45 | * Revision 1.1 2007/04/24 14:09:45 alex_simov | |
| 46 | * new SA-WSDL api | |
| 47 | * | |
| 48 | */ |