Cross Reference: WSDLOperationRef.java
xref
: /
owl-s
/
src
/
org
/
mindswap
/
owls
/
grounding
/
WSDLOperationRef.java
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
WSDLOperationRef.java revision 2
/*
* Created on Dec 17, 2004
*/
package
org
.
mindswap
.
owls
.
grounding
;
import
java
.
net
.
URI
;
import
org
.
mindswap
.
owl
.
OWLIndividual
;
/**
*
@author
Evren Sirin
*
*/
public
interface
WSDLOperationRef
extends
OWLIndividual
{
public
void
setOperation
(
URI
op
);
public
URI
getOperation
();
public
void
setPortType
(
URI
port
);
public
URI
getPortType
();
}