MoreGroundings.java revision 2
dea636af4d1902a081ee891f1b19ee2f8729d759Pavel Březina//The MIT License
dea636af4d1902a081ee891f1b19ee2f8729d759Pavel Březina// Copyright (c) 2004 Evren Sirin
dea636af4d1902a081ee891f1b19ee2f8729d759Pavel Březina// Permission is hereby granted, free of charge, to any person obtaining a copy
dea636af4d1902a081ee891f1b19ee2f8729d759Pavel Březina// of this software and associated documentation files (the "Software"), to
dea636af4d1902a081ee891f1b19ee2f8729d759Pavel Březina// deal in the Software without restriction, including without limitation the
dea636af4d1902a081ee891f1b19ee2f8729d759Pavel Březina// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
dea636af4d1902a081ee891f1b19ee2f8729d759Pavel Březina// sell copies of the Software, and to permit persons to whom the Software is
dea636af4d1902a081ee891f1b19ee2f8729d759Pavel Březina// furnished to do so, subject to the following conditions:
dea636af4d1902a081ee891f1b19ee2f8729d759Pavel Březina// The above copyright notice and this permission notice shall be included in
dea636af4d1902a081ee891f1b19ee2f8729d759Pavel Březina// all copies or substantial portions of the Software.
dea636af4d1902a081ee891f1b19ee2f8729d759Pavel Březina// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
dea636af4d1902a081ee891f1b19ee2f8729d759Pavel Březina// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
dea636af4d1902a081ee891f1b19ee2f8729d759Pavel Březina// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
dea636af4d1902a081ee891f1b19ee2f8729d759Pavel Březina// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
dea636af4d1902a081ee891f1b19ee2f8729d759Pavel Březina// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
dea636af4d1902a081ee891f1b19ee2f8729d759Pavel Březina// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
dea636af4d1902a081ee891f1b19ee2f8729d759Pavel Březina// IN THE SOFTWARE.
dea636af4d1902a081ee891f1b19ee2f8729d759Pavel Březina * Created on 13.04.2005
dea636af4d1902a081ee891f1b19ee2f8729d759Pavel Březina * Static description for the additional OWL-S Extensions groundings
dea636af4d1902a081ee891f1b19ee2f8729d759Pavel Březina * @author Michael Daenzer, University of Zurich
dea636af4d1902a081ee891f1b19ee2f8729d759Pavel Březina * @see <a href="http://www.ifi.unizh.ch/ddis/ont/MoreGroundings.owl">MoreGroundings.owl</a>
dea636af4d1902a081ee891f1b19ee2f8729d759Pavel Březina public static String baseURI = "http://www.ifi.unizh.ch/ddis/ont/owl-s/";
dea636af4d1902a081ee891f1b19ee2f8729d759Pavel Březina public static String URI = baseURI + version + "MoreGroundings.owl#";
dea636af4d1902a081ee891f1b19ee2f8729d759Pavel Březina public static OWLObjectProperty owlsParameter;
dea636af4d1902a081ee891f1b19ee2f8729d759Pavel Březina public static OWLObjectProperty hasAtomicProcessGrounding;
dea636af4d1902a081ee891f1b19ee2f8729d759Pavel Březina public static OWLClass JavaAtomicProcessGrounding;
dea636af4d1902a081ee891f1b19ee2f8729d759Pavel Březina public static OWLObjectProperty hasJavaParameter;
dea636af4d1902a081ee891f1b19ee2f8729d759Pavel Březina JavaGrounding = EntityFactory.createClass(URIUtils.createURI(URI + "JavaGrounding"));
dea636af4d1902a081ee891f1b19ee2f8729d759Pavel Březina JavaAtomicProcessGrounding = EntityFactory.createClass(URIUtils.createURI(URI + "JavaAtomicProcessGrounding"));
dea636af4d1902a081ee891f1b19ee2f8729d759Pavel Březina hasAtomicProcessGrounding = EntityFactory.createObjectProperty(URIUtils.createURI(URI + "hasAtomicProcessGrounding"));
dea636af4d1902a081ee891f1b19ee2f8729d759Pavel Březina javaClass = EntityFactory.createDataProperty(URIUtils.createURI(URI + "javaClass"));
dea636af4d1902a081ee891f1b19ee2f8729d759Pavel Březina javaMethod = EntityFactory.createDataProperty(URIUtils.createURI(URI + "javaMethod"));
dea636af4d1902a081ee891f1b19ee2f8729d759Pavel Březina JavaVariable = EntityFactory.createClass(URIUtils.createURI(URI + "JavaVariable"));
dea636af4d1902a081ee891f1b19ee2f8729d759Pavel Březina javaType = EntityFactory.createDataProperty(URIUtils.createURI(URI + "javaType"));
dea636af4d1902a081ee891f1b19ee2f8729d759Pavel Březina JavaParameter = EntityFactory.createClass(URIUtils.createURI(URI + "JavaParameter"));
dea636af4d1902a081ee891f1b19ee2f8729d759Pavel Březina paramIndex = EntityFactory.createDataProperty(URIUtils.createURI(URI + "paramIndex"));
dea636af4d1902a081ee891f1b19ee2f8729d759Pavel Březina javaOutput = EntityFactory.createObjectProperty(URIUtils.createURI(URI + "javaOutput"));
dea636af4d1902a081ee891f1b19ee2f8729d759Pavel Březina hasJavaParameter = EntityFactory.createObjectProperty(URIUtils.createURI(URI + "hasJavaParameter"));
dea636af4d1902a081ee891f1b19ee2f8729d759Pavel Březina owlsProcess = EntityFactory.createObjectProperty(URIUtils.createURI(URI + "owlsProcess"));