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:
  • IContentPart
  • CommandStack
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Resets the transformation request state of this part.
    org.eclipse.emf.common.command.CompoundCommand
    Returns 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 null if no transformation is requested
    • clearContentTransformRequest

      void clearContentTransformRequest()
      Resets the transformation request state of this part.