Cross Reference: OWLObjectPropertyImpl.java
xref
: /
owl-s
/
src
/
impl
/
jena
/
OWLObjectPropertyImpl.java
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
OWLObjectPropertyImpl.java revision 2
/*
* Created on Dec 12, 2004
*/
package
impl
.
jena
;
import
org
.
mindswap
.
owl
.
OWLObjectProperty
;
import
org
.
mindswap
.
owl
.
OWLOntology
;
import
com
.
hp
.
hpl
.
jena
.
rdf
.
model
.
Property
;
/**
*
@author
Evren Sirin
*/
public
class
OWLObjectPropertyImpl
extends
OWLPropertyImpl
implements
OWLObjectProperty
{
public
OWLObjectPropertyImpl
(
OWLOntology
model
,
Property
prop
) {
super
(
model
,
prop
);
}
}