Cross Reference: ProcessListImpl.java
xref
: /
owl-s
/
src
/
impl
/
owls
/
process
/
ProcessListImpl.java
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
2
ronwalf
/*
2
ronwalf
* Created on Aug 26, 2004
2
ronwalf
*/
2
ronwalf
package
impl
.
owls
.
process
;
2
ronwalf
2
ronwalf
2
ronwalf
import
impl
.
owl
.
CastingList
;
2
ronwalf
2
ronwalf
import
java
.
net
.
URI
;
2
ronwalf
2
ronwalf
import
org
.
mindswap
.
owl
.
OWLIndividualList
;
2
ronwalf
import
org
.
mindswap
.
owls
.
process
.
Process
;
2
ronwalf
import
org
.
mindswap
.
owls
.
process
.
ProcessList
;
2
ronwalf
2
ronwalf
/**
2
ronwalf
*
@author
Evren Sirin
2
ronwalf
*/
2
ronwalf
public
class
ProcessListImpl
extends
CastingList
implements
ProcessList
{
2
ronwalf
public
ProcessListImpl
() {
2
ronwalf
super
(
Process
.
class
);
2
ronwalf
}
2
ronwalf
2
ronwalf
public
ProcessListImpl
(
OWLIndividualList
list
) {
2
ronwalf
super
(
list
,
Process
.
class
);
2
ronwalf
}
2
ronwalf
2
ronwalf
public
Process
processAt
(
int
index
) {
2
ronwalf
return
(
Process
)
get
(
index
);
2
ronwalf
}
2
ronwalf
2
ronwalf
public
Process
getProcess
(
URI
processURI
) {
2
ronwalf
return
(
Process
)
getIndividual
(
processURI
);
2
ronwalf
}
2
ronwalf
2
ronwalf
}