Package com.e1c.langtool.builder
Interface ITranslationBuilderParticipant.IBuildContext
- All Known Implementing Classes:
BuildContext
- Enclosing interface:
- ITranslationBuilderParticipant
public static interface ITranslationBuilderParticipant.IBuildContext
The set of data which passing to translation builder participants during build process.
The build context contains the following data:
- the set of collected feature-values
- the translation source that binded with resource on which the builder has been invoked
- type of action performed over the changed resource
-
Method Summary
Modifier and TypeMethodDescriptionReturns type of action performed over the changed resource.Returns collected feature-values.Returns the translation source that binded with changed resource.
-
Method Details
-
getSource
TranslationSource getSource()Returns the translation source that binded with changed resource.- Returns:
- the translation source
-
getActionType
ActionType getActionType()Returns type of action performed over the changed resource.- Returns:
- the type of action performed over the changed resource
-
getContent
Collection<FeatureValue> getContent()Returns collected feature-values.- Returns:
- collected feature-values.
-