Closing #264, addign JavaAPI to DataFlowVariable

This commit is contained in:
Viktor Klang 2010-09-15 16:49:05 +02:00
parent 9b85da6a67
commit 8a36b24832
2 changed files with 37 additions and 1 deletions

View file

@ -13,4 +13,11 @@ trait Function[T,R] {
*/
trait Procedure[T] {
def apply(param: T): Unit
}
}
/**
* An executable piece of code that takes no parameters and doesn't return any value
*/
trait SideEffect {
def apply: Unit
}