OWL.java revision 2
af062818b47340eef15700d2f0211576ba3506eevboxsync// The MIT License
af062818b47340eef15700d2f0211576ba3506eevboxsync// Copyright (c) 2004 Evren Sirin
af062818b47340eef15700d2f0211576ba3506eevboxsync// Permission is hereby granted, free of charge, to any person obtaining a copy
af062818b47340eef15700d2f0211576ba3506eevboxsync// of this software and associated documentation files (the "Software"), to
af062818b47340eef15700d2f0211576ba3506eevboxsync// deal in the Software without restriction, including without limitation the
af062818b47340eef15700d2f0211576ba3506eevboxsync// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
af062818b47340eef15700d2f0211576ba3506eevboxsync// sell copies of the Software, and to permit persons to whom the Software is
af062818b47340eef15700d2f0211576ba3506eevboxsync// furnished to do so, subject to the following conditions:
af062818b47340eef15700d2f0211576ba3506eevboxsync// The above copyright notice and this permission notice shall be included in
af062818b47340eef15700d2f0211576ba3506eevboxsync// all copies or substantial portions of the Software.
af062818b47340eef15700d2f0211576ba3506eevboxsync// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
af062818b47340eef15700d2f0211576ba3506eevboxsync// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
af062818b47340eef15700d2f0211576ba3506eevboxsync// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
af062818b47340eef15700d2f0211576ba3506eevboxsync// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
b955672b950093ff7416d1269dd4d3b69983bd8fvboxsync// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
4b9d6701570cb98fd36e209314239d104ec584d3vboxsync// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
4b9d6701570cb98fd36e209314239d104ec584d3vboxsync// IN THE SOFTWARE.
b955672b950093ff7416d1269dd4d3b69983bd8fvboxsync * Created on Dec 28, 2003
af062818b47340eef15700d2f0211576ba3506eevboxsync * @author Evren Sirin
af062818b47340eef15700d2f0211576ba3506eevboxsyncpublic class OWL {
af062818b47340eef15700d2f0211576ba3506eevboxsync public final static String ns = "http://www.w3.org/2002/07/owl#";
af062818b47340eef15700d2f0211576ba3506eevboxsync public final static URI getURI() { return URI.create(ns); }
af062818b47340eef15700d2f0211576ba3506eevboxsync EntityFactory.createClass(URIUtils.createURI(ns + "Thing"));
af062818b47340eef15700d2f0211576ba3506eevboxsync EntityFactory.createClass(URIUtils.createURI(ns + "Nothing"));
af062818b47340eef15700d2f0211576ba3506eevboxsync // added by Michael Daenzer
af062818b47340eef15700d2f0211576ba3506eevboxsync EntityFactory.createClass(URIUtils.createURI(ns + "Ontology"));
af062818b47340eef15700d2f0211576ba3506eevboxsync // end added by Michael Daenzer
af062818b47340eef15700d2f0211576ba3506eevboxsync public final static URI imports = URI.create(ns + "imports");
af062818b47340eef15700d2f0211576ba3506eevboxsync public final static URI versionInfo = URI.create(ns + "versionInfo");
af062818b47340eef15700d2f0211576ba3506eevboxsync public final static URI backwardCompatibleWith = URI.create(ns + "backwardCompatibleWith");
af062818b47340eef15700d2f0211576ba3506eevboxsync public final static URI priorVersion = URI.create(ns + "priorVersion");
af062818b47340eef15700d2f0211576ba3506eevboxsync public final static URI incompatibleWith = URI.create(ns + "incompatibleWith");
af062818b47340eef15700d2f0211576ba3506eevboxsync public final static URI sameAs = URI.create(ns + "sameAs");
af062818b47340eef15700d2f0211576ba3506eevboxsync public final static URI differentFrom = URI.create(ns + "differentFrom");