Uses of Class
org.logicmachine.rebl.language.context.EnvironmentObjects
Packages that use EnvironmentObjects
Package
Description
This package provides the top-level class used
to actually create a Business Language.
This package provides placeholder classes used to store
contextual data for use within the Business Language.
-
Uses of EnvironmentObjects in org.logicmachine.rebl.language
Methods in org.logicmachine.rebl.language that return EnvironmentObjectsModifier and TypeMethodDescriptionLanguage.withGlobalEnvironmentObjects()
Returns the set of global environment objects as a 'EnvironmentObjects' collection. -
Uses of EnvironmentObjects in org.logicmachine.rebl.language.context
Methods in org.logicmachine.rebl.language.context that return EnvironmentObjectsModifier and TypeMethodDescriptionAdds the input 'object' unchanged to the current operating environment if 'object' is an instance of EnvironmentObject, otherwise this method will construct a new EnvironmentObject instance from the given 'object' and add this new instance to the current operating environment.EnvironmentObjects.add
(EnvironmentObject object) Adds the given 'object' to the current operating environment.static EnvironmentObjects
Returns a newly created EnvironmentObjects collection, holding the given 'objects', each of which will have been wrapped in an 'EnvironmentObject' instance before being added to the collection.EnvironmentObjects.addAll
(EnvironmentObject... objects) Adds the given 'objects' to the current operating environment.Methods in org.logicmachine.rebl.language.context with parameters of type EnvironmentObjectsModifier and TypeMethodDescriptionScope.withEnvironmentObjects
(EnvironmentObjects objects) Allows the given environment objects to be attached to the current scope.