PFuncAssignToObject |
Common case: take a node (subject) and
calculate something else, assign it to a
variable (object)
|
PFuncAssignToSubject |
Common case: take a node (object) and
calculate something else, assign it to a
variable (subject)
|
PFuncListAndList |
The case of:
subject is a list
object is a list
call the implementation with one binding at a time
|
PFuncListAndSimple |
The case of:
subject is a list
object is a node, not a list
call the implementation with one binding at a time
|
PFuncSimple |
Common, simple case:
arguments are not lists
attempt to put values in for any bound variables
call the implementation with one binding at a time
|
PFuncSimpleAndList |
Common, simple case:
subject argument is not a list
object is a list
call the implementation with one binding at a time
|
ProcedurePF |
Adapter between property functions and server procedures
When called, this wrapper reconstructs the usual property function calling conventions.
|
PropertyFunctionBase |
Basic property function handler that calls the implementation
subclass one binding at a time
|
PropertyFunctionEval |
Basic property function handler that calls the implementation
subclass one binding at a time after evaluating the arguments (if bound).
|
PropertyFunctionRegistry |
|
PropFuncArg |
Class representing an argument (subject or object position) of a property function.
|
PropFuncArgType |
|
StandardPropertyFunctions |
|