Cross Reference: SWRL.java
xref
: /
owl-s
/
src
/
org
/
mindswap
/
owl
/
vocabulary
/
SWRL.java
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
2
ronwalf
/*
2
ronwalf
* Created on Jul 31, 2004
2
ronwalf
*/
2
ronwalf
package
org
.
mindswap
.
owl
.
vocabulary
;
2
ronwalf
2
ronwalf
import
org
.
mindswap
.
owl
.
EntityFactory
;
2
ronwalf
import
org
.
mindswap
.
owl
.
OWLClass
;
2
ronwalf
import
org
.
mindswap
.
owl
.
OWLDataProperty
;
2
ronwalf
import
org
.
mindswap
.
owl
.
OWLObjectProperty
;
2
ronwalf
import
org
.
mindswap
.
owl
.
list
.
ListVocabulary
;
2
ronwalf
import
org
.
mindswap
.
utils
.
URIUtils
;
2
ronwalf
2
ronwalf
/**
2
ronwalf
*
@author
Evren Sirin
2
ronwalf
*/
2
ronwalf
public
class
SWRL
{
2
ronwalf
public
final
static
String
URI
=
"
http://www.w3.org/2003/11/swrl
#"
;
2
ronwalf
2
ronwalf
public
final
static
OWLClass
AtomList
=
2
ronwalf
EntityFactory
.
createClass
(
URIUtils
.
createURI
(
URI
+
"AtomList"
));
2
ronwalf
public
final
static
OWLClass
Atom
=
2
ronwalf
EntityFactory
.
createClass
(
URIUtils
.
createURI
(
URI
+
"Atom"
));
2
ronwalf
public
final
static
OWLClass
ClassAtom
=
2
ronwalf
EntityFactory
.
createClass
(
URIUtils
.
createURI
(
URI
+
"ClassAtom"
));
2
ronwalf
public
final
static
OWLClass
IndividualPropertyAtom
=
2
ronwalf
EntityFactory
.
createClass
(
URIUtils
.
createURI
(
URI
+
"IndividualPropertyAtom"
));
2
ronwalf
public
final
static
OWLClass
DifferentIndividualsAtom
=
2
ronwalf
EntityFactory
.
createClass
(
URIUtils
.
createURI
(
URI
+
"DifferentIndividualsAtom"
));
2
ronwalf
public
final
static
OWLClass
SameIndividualAtom
=
2
ronwalf
EntityFactory
.
createClass
(
URIUtils
.
createURI
(
URI
+
"SameIndividualAtom"
));
2
ronwalf
public
final
static
OWLClass
DatavaluedPropertyAtom
=
2
ronwalf
EntityFactory
.
createClass
(
URIUtils
.
createURI
(
URI
+
"DatavaluedPropertyAtom"
));
2
ronwalf
public
final
static
OWLClass
DataRangeAtom
=
2
ronwalf
EntityFactory
.
createClass
(
URIUtils
.
createURI
(
URI
+
"DataRangeAtom"
));
2
ronwalf
public
final
static
OWLClass
BuiltinAtom
=
2
ronwalf
EntityFactory
.
createClass
(
URIUtils
.
createURI
(
URI
+
"BuiltinAtom"
));
2
ronwalf
2
ronwalf
public
final
static
OWLClass
Builtin
=
2
ronwalf
EntityFactory
.
createClass
(
URIUtils
.
createURI
(
URI
+
"Builtin"
));
2
ronwalf
public
final
static
OWLClass
Variable
=
2
ronwalf
EntityFactory
.
createClass
(
URIUtils
.
createURI
(
URI
+
"Variable"
));
2
ronwalf
2
ronwalf
public
final
static
OWLObjectProperty
classPredicate
=
2
ronwalf
EntityFactory
.
createObjectProperty
(
URIUtils
.
createURI
(
URI
+
"classPredicate"
));
2
ronwalf
public
final
static
OWLObjectProperty
propertyPredicate
=
2
ronwalf
EntityFactory
.
createObjectProperty
(
URIUtils
.
createURI
(
URI
+
"propertyPredicate"
));
2
ronwalf
public
final
static
OWLObjectProperty
argument1
=
2
ronwalf
EntityFactory
.
createObjectProperty
(
URIUtils
.
createURI
(
URI
+
"argument1"
));
2
ronwalf
public
final
static
OWLObjectProperty
argument2
=
2
ronwalf
EntityFactory
.
createObjectProperty
(
URIUtils
.
createURI
(
URI
+
"argument2"
));
2
ronwalf
public
final
static
OWLDataProperty
_argument2
=
2
ronwalf
EntityFactory
.
createDataProperty
(
URIUtils
.
createURI
(
URI
+
"argument2"
));
2
ronwalf
public
final
static
OWLObjectProperty
dataRange
=
2
ronwalf
EntityFactory
.
createObjectProperty
(
URIUtils
.
createURI
(
URI
+
"dataRange"
));
2
ronwalf
public
final
static
OWLObjectProperty
builtin
=
2
ronwalf
EntityFactory
.
createObjectProperty
(
URIUtils
.
createURI
(
URI
+
"builtin"
));
2
ronwalf
public
final
static
OWLObjectProperty
arguments
=
2
ronwalf
EntityFactory
.
createObjectProperty
(
URIUtils
.
createURI
(
URI
+
"arguments"
));
2
ronwalf
2
ronwalf
public
final
static
ListVocabulary
AtomListVocabulary
=
2
ronwalf
RDF
.
ListVocabulary
.
specialize
(
AtomList
);
2
ronwalf
}