org.openrdf.elmo.codegen.concepts
Interface Method

All Superinterfaces:
Entity, ObjectProperty, OwlProperty, Property, Resource, Thing
All Known Subinterfaces:
CodeMethod
All Known Implementing Classes:
GroovyMethodCompiler, JavaMethodCompiler, MethodSupport

public interface Method
extends ObjectProperty

The base property for methods of code that handle message.


Method Summary
 Class getElmoDomain()
          A domain of this method.
 String getElmoGroovy()
          The block of Groovy code for this method.
 Set<Class> getElmoImports()
          A Class that maybe referenced locally in this method.
 String getElmoJava()
          The block of Java code for this method.
 Class getElmoRange()
          A message type of this method.
 Method getElmoSubMethodOf()
          The subject is a submethod of a method.
 void setElmoDomain(Class domain)
          A domain of this method.
 void setElmoGroovy(String groovy)
          The block of Groovy code for this method.
 void setElmoImports(Set<? extends Class> imports)
          A Class that maybe referenced locally in this method.
 void setElmoJava(String java)
          The block of Java code for this method.
 void setElmoRange(Class range)
          A message type of this method.
 void setElmoSubMethodOf(Method subMethodOf)
          The subject is a submethod of a method.
 
Methods inherited from interface org.openrdf.concepts.owl.ObjectProperty
getOwlInverseOf, setOwlInverseOf
 
Methods inherited from interface org.openrdf.concepts.owl.OwlProperty
getOwlEquivalentProperties, setOwlEquivalentProperties
 
Methods inherited from interface org.openrdf.concepts.rdf.Property
getRdfsDomains, getRdfsRanges, getRdfsSubPropertyOf, setRdfsDomains, setRdfsRanges, setRdfsSubPropertyOf
 
Methods inherited from interface org.openrdf.concepts.owl.Thing
getOwlDifferentFrom, getOwlSameAs, getOwlVersionInfo, setOwlDifferentFrom, setOwlSameAs, setOwlVersionInfo
 
Methods inherited from interface org.openrdf.concepts.rdfs.Resource
getRdfsComment, getRdfsIsDefinedBy, getRdfsLabel, getRdfsMembers, getRdfsSeeAlso, getRdfTypes, getRdfValues, setRdfsComment, setRdfsIsDefinedBy, setRdfsLabel, setRdfsMembers, setRdfsSeeAlso, setRdfTypes, setRdfValues
 
Methods inherited from interface org.openrdf.elmo.Entity
getElmoManager, getQName
 

Method Detail

getElmoSubMethodOf

Method getElmoSubMethodOf()
The subject is a submethod of a method.


setElmoSubMethodOf

void setElmoSubMethodOf(Method subMethodOf)
The subject is a submethod of a method.


getElmoDomain

Class getElmoDomain()
A domain of this method.


setElmoDomain

void setElmoDomain(Class domain)
A domain of this method.


getElmoRange

Class getElmoRange()
A message type of this method.


setElmoRange

void setElmoRange(Class range)
A message type of this method.


getElmoImports

Set<Class> getElmoImports()
A Class that maybe referenced locally in this method.


setElmoImports

void setElmoImports(Set<? extends Class> imports)
A Class that maybe referenced locally in this method.


getElmoJava

String getElmoJava()
The block of Java code for this method.


setElmoJava

void setElmoJava(String java)
The block of Java code for this method.


getElmoGroovy

String getElmoGroovy()
The block of Groovy code for this method.


setElmoGroovy

void setElmoGroovy(String groovy)
The block of Groovy code for this method.



Copyright © 2004-2008 Aduna. All Rights Reserved.