Cross Reference: Produce.java
xref
: /
owl-s
/
src
/
org
/
mindswap
/
owls
/
process
/
Produce.java
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
Produce.java revision 2
2
ronwalf
/*
2
ronwalf
* Created on Jan 4, 2005
2
ronwalf
*/
2
ronwalf
package
org
.
mindswap
.
owls
.
process
;
2
ronwalf
2
ronwalf
2
ronwalf
/**
2
ronwalf
*
@author
Evren Sirin
2
ronwalf
*
2
ronwalf
*/
2
ronwalf
public
interface
Produce
extends
ControlConstruct
{
2
ronwalf
public
OutputBinding
getBinding
();
2
ronwalf
2
ronwalf
public
OutputBindingList
getBindings
();
2
ronwalf
2
ronwalf
public
void
addBinding
(
OutputBinding
binding
);
2
ronwalf
2
ronwalf
public
void
addBinding
(
Output
output
,
ParameterValue
paramValue
);
2
ronwalf
2
ronwalf
public
void
addBinding
(
Output
output
,
Perform
perform
,
Parameter
param
);
2
ronwalf
2
ronwalf
public
void
setBinding
(
OutputBinding
binding
);
2
ronwalf
}