Interface ICompoundTransformablePart
- All Known Implementing Classes:
AbstractImagePart,AbstractLocatablePart,AbstractNodePart
public interface ICompoundTransformablePart
Represents a compound MVC component part that supports content transformation
through command-based operations. Implementations manage transformation requests
as
CompoundCommand objects to enable undo/redo functionality within
the Eclipse Command Stack framework.- Author:
- Alexey Glazyrin
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoidResets the transformation request state of this part.org.eclipse.emf.common.command.CompoundCommandReturns a compound command representing pending content transformation(s).
-
Method Details
-
getContentTransformRequest
org.eclipse.emf.common.command.CompoundCommand getContentTransformRequest()Returns a compound command representing pending content transformation(s). The command may contain multiple child commands to be executed atomically.- Returns:
- compound command for content transformation, or
nullif no transformation is requested
-
clearContentTransformRequest
void clearContentTransformRequest()Resets the transformation request state of this part.
-