Class TransformationParameters
- java.lang.Object
-
- com.nomagic.magicdraw.variants.transformation.TransformationParameters
-
@OpenApiAll public class TransformationParameters extends java.lang.ObjectTransformation parameters passed to eachElementTransformationwhen model transformation is executed.
-
-
Field Summary
Fields Modifier and Type Field Description private Notifiernotifierprivate booleanshouldIgnoreLocksIgnore another users locked elements in teamwork environment if set to true.
-
Constructor Summary
Constructors Constructor Description TransformationParameters()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description NotifiergetNotifier()voidsetNotifier(Notifier notifier)voidsetShouldIgnoreLocks(boolean shouldIgnoreLocks)booleanshouldIgnoreLocks()
-
-
-
Field Detail
-
shouldIgnoreLocks
private boolean shouldIgnoreLocks
Ignore another users locked elements in teamwork environment if set to true.
-
notifier
private Notifier notifier
-
-
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.
-
-