|
|||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
ParameterValue.java | - | - | - | - |
|
1 | package org.drools.semantics.annotation.model; | |
2 | ||
3 | import java.io.Serializable; | |
4 | ||
5 | import org.drools.spi.Tuple; | |
6 | ||
7 | interface ParameterValue extends Serializable | |
8 | { | |
9 | Object getValue( Tuple tuple ); | |
10 | } |
|