com.ibm.wbiserver.brules.mgmt.dtable

Interface TreeConditionValueDefinition

All Superinterfaces:
java.io.Serializable

  1. public interface TreeConditionValueDefinition
  2. extends java.io.Serializable
This interface represents the definition of a condition value. A condition value is the "right-hand side" of a condition. For example, if the condition is "intVar + 1 > intVar2 + 10", the condition value definition would define the "intVar2 + 10" part.

Field Summary

Modifier and Type Field and Description
  1. static
  2. java.lang.String
COPYRIGHT

Method Summary

Modifier and Type Method and Description
  1. TemplateInstanceExpression
getConditionValueTemplateInstance()
Get the template instance with parameter values for this condition value.
  1. java.lang.String
getUserPresentation()
Get the user presentation string for this condition value definition.

Field Detail

  1. static final java.lang.String COPYRIGHT
See Also:

Method Detail

getConditionValueTemplateInstance

  1. TemplateInstanceExpression getConditionValueTemplateInstance( )
Get the template instance with parameter values for this condition value. Each value definition will contain either a template instance or a user presentation. It will not have both. If it contains a template instance, then the user presentation can be obtained from the template associated with the template instance.
Returns:
The template instance for this condition value. null if there is no template instance.

getUserPresentation

  1. java.lang.String getUserPresentation( )
Get the user presentation string for this condition value definition. Each value definition will contain either a template instance or a user presentation. It will not have both. If it contains a template instance, then the user presentation can be obtained from the template associated with the template instance.
Returns:
The user presentation string for this condition value definition. null if there is no user presentation.