Class TransformationParameters
- java.lang.Object
-
- com.nomagic.magicdraw.variants.transformation.TransformationParameters
-
@OpenApiAll public class TransformationParameters extends java.lang.Object
Transformation parameters passed to eachElementTransformation
when model transformation is executed.
-
-
Constructor Summary
Constructors Constructor Description TransformationParameters(boolean shouldIgnoreLocks)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Notifier
getNotifier()
void
setNotifier(Notifier notifier)
void
setShouldIgnoreLocks(boolean shouldIgnoreLocks)
boolean
shouldIgnoreLocks()
-
-
-
Method Detail
-
shouldIgnoreLocks
public boolean shouldIgnoreLocks()
- Returns:
- should transformation ignore another user locked elements.
-
setShouldIgnoreLocks
public void setShouldIgnoreLocks(boolean shouldIgnoreLocks)
- Parameters:
shouldIgnoreLocks
- should transformation ignore another user locked elements.
-
setNotifier
public void setNotifier(Notifier notifier)
- Parameters:
notifier
- used to notify user.
-
getNotifier
public Notifier getNotifier()
- Returns:
- notifier used to notify user.
-
-