Interface VariableOrConstantEntityInitialValueDefinitionCallback
-
public interface VariableOrConstantEntityInitialValueDefinitionCallbackInterface for a callback implementation that allows theVariableManagerto trigger the definition of the (typically initial) value for a givenVariableOrConstantEntityby someone capable of defining this value (= the implementor of this interface).- Author:
- Rene Schneider - initial API and implementation
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidtriggerDefinition(VariableOrConstantEntity anEntity)When called, the definition of the givenVariableOrConstantEntityshould be performed.
-
-
-
Method Detail
-
triggerDefinition
void triggerDefinition(VariableOrConstantEntity anEntity)
When called, the definition of the givenVariableOrConstantEntityshould be performed. It must be performed synchronously, because the caller is allowed to expect theVariableOrConstantEntityto be defined after this method returns.- Parameters:
anEntity- the entity to define
-
-