Cross Reference: SWRLDataValueImpl.java
xref
: /
owl-s
/
src
/
impl
/
swrl
/
SWRLDataValueImpl.java
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
2
ronwalf
/*
2
ronwalf
* Created on Dec 28, 2004
2
ronwalf
*/
2
ronwalf
package
impl
.
swrl
;
2
ronwalf
2
ronwalf
import
impl
.
jena
.
OWLDataValueImpl
;
2
ronwalf
2
ronwalf
import
org
.
mindswap
.
owl
.
OWLDataValue
;
2
ronwalf
import
org
.
mindswap
.
swrl
.
SWRLDataValue
;
2
ronwalf
2
ronwalf
import
com
.
hp
.
hpl
.
jena
.
rdf
.
model
.
Literal
;
2
ronwalf
2
ronwalf
/**
2
ronwalf
*
@author
Evren Sirin
2
ronwalf
*
2
ronwalf
*/
2
ronwalf
public
class
SWRLDataValueImpl
extends
OWLDataValueImpl
implements
SWRLDataValue
{
2
ronwalf
public
SWRLDataValueImpl
(
Literal
literal
) {
2
ronwalf
super
(
literal
);
2
ronwalf
}
2
ronwalf
2
ronwalf
public
SWRLDataValueImpl
(
OWLDataValue
value
) {
2
ronwalf
super
((
Literal
)
value
.
getImplementation
());
2
ronwalf
}
2
ronwalf
2
ronwalf
public
boolean
isVariable
() {
2
ronwalf
return
false
;
2
ronwalf
}
2
ronwalf
}