Interface Notifier
-
@OpenApiAll public interface Notifier
Notifies user about abnormal transformation events
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
notify(java.lang.String message)
Called for any other reason than the other notify methodsvoid
notifyAboutReadOnlyElements(java.util.Collection<Element> readOnlyElements)
Called when some of the variability elements could not be locked or exist in read-only modulevoid
notifyElementDisposed(VariationPoint variationPoint)
Called when variation element is deleted from the project.void
notifyNoElementsToTransform()
Called when no VariationPoints where foundvoid
notifyNoTransformationFound(VariationPoint variationPoint)
Called whenElementTransformationFactory.getTransformation(com.nomagic.magicdraw.variants.variationpoints.VariationPoint)
returns null for given variationPoint during transformation process
-
-
-
Method Detail
-
notifyNoElementsToTransform
void notifyNoElementsToTransform()
Called when no VariationPoints where found
-
notifyAboutReadOnlyElements
void notifyAboutReadOnlyElements(java.util.Collection<Element> readOnlyElements)
Called when some of the variability elements could not be locked or exist in read-only module
-
notifyElementDisposed
void notifyElementDisposed(VariationPoint variationPoint)
Called when variation element is deleted from the project. This might happen when there is another existence VariationPoint for the same element
-
notifyNoTransformationFound
void notifyNoTransformationFound(VariationPoint variationPoint)
Called whenElementTransformationFactory.getTransformation(com.nomagic.magicdraw.variants.variationpoints.VariationPoint)
returns null for given variationPoint during transformation process
-
notify
void notify(java.lang.String message)
Called for any other reason than the other notify methods
-
-