Interface IDefinitionSource
- All Known Implementing Classes:
MetaModelDelegate
,TslTypeScope
public interface IDefinitionSource
This interface defines the methods which are needed by the expression parser to identify and validate objects that
are used in expression, but whose source is external.
- Since:
- 5.0
- Author:
- O. Kerpershoek, F. van der Meer
-
Method Summary
Modifier and TypeMethodDescriptiongetNamedObjectDefinition
(String objectName, String instanceName) This method returns the object definition for the specified type and instance name.getObjectDefinition
(String name) This method returns the object definition for the specified type name.getSharedAncestor
(String first, String second) Determines the shared ancestor of two entity types.getValueDefinition
(String name) This method returns the value definition of a label (or global property?).void
This function will be called to register a usage of a reusable expression to the implementor of this interface.
-
Method Details
-
getObjectDefinition
This method returns the object definition for the specified type name.- Parameters:
name
- The name of the type for which the definition is requested.- Returns:
- The definition of the object with the specified type name.
- Throws:
ParseException
- This type of exception may be thrown when the name does not identify a known type. TODO Rename naar getEntityDefinition ? teveel indirecties maakt onduidelijk ( of getRecordDefinitiion )
-
getNamedObjectDefinition
This method returns the object definition for the specified type and instance name.- Parameters:
objectName
- The name of the type for which the definition is requested.instanceName
- The instance name for the specified type for which the definition is requested.- Returns:
- An object definition when available. null otherwise.
-
getValueDefinition
This method returns the value definition of a label (or global property?). For example: PI- Parameters:
name
- The name of the global value that is requested.- Returns:
- An object containing the value definition for the specified identifier.
- Throws:
ParseException
- This type of exception may be thrown when the name does not identify a known type.
-
registerExpressionTemplate
This function will be called to register a usage of a reusable expression to the implementor of this interface. Added for studio 6.x+- Parameters:
name
- The name of the expression template.
-