Cross Reference: InputBindingListImpl.java
xref
: /
owl-s
/
src
/
impl
/
owls
/
process
/
binding
/
InputBindingListImpl.java
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
2
ronwalf
/*
2
ronwalf
* Created on Aug 30, 2004
2
ronwalf
*/
22
daenzerorama
package
impl
.
owls
.
process
.
binding
;
2
ronwalf
2
ronwalf
2
ronwalf
import
org
.
mindswap
.
owl
.
OWLIndividualList
;
2
ronwalf
import
org
.
mindswap
.
owls
.
process
.
InputBinding
;
2
ronwalf
import
org
.
mindswap
.
owls
.
process
.
InputBindingList
;
2
ronwalf
2
ronwalf
/**
2
ronwalf
*
@author
Evren Sirin
2
ronwalf
*/
2
ronwalf
public
class
InputBindingListImpl
extends
BindingListImpl
implements
InputBindingList
{
2
ronwalf
public
InputBindingListImpl
() {
2
ronwalf
}
2
ronwalf
2
ronwalf
public
InputBindingListImpl
(
OWLIndividualList
list
) {
2
ronwalf
super
(
list
);
2
ronwalf
}
2
ronwalf
2
ronwalf
2
ronwalf
public
InputBinding
inputBindingAt
(
int
index
) {
2
ronwalf
return
(
InputBinding
)
individualAt
(
index
).
castTo
(
InputBinding
.
class
);
2
ronwalf
}
2
ronwalf
}