Class ShadowMatrix

java.lang.Object
org.robolectric.shadows.ShadowMatrix
Direct Known Subclasses:
ShadowLegacyMatrix, ShadowNativeMatrix

@Implements(value=android.graphics.Matrix.class, shadowPicker=Picker.class) public abstract class ShadowMatrix extends Object
  • Field Details

  • Constructor Details

    • ShadowMatrix

      public ShadowMatrix()
  • Method Details

    • getPreOperations

      public abstract List<String> getPreOperations()
      A list of all 'pre' operations performed on this Matrix. The last operation performed will be first in the list.
      Returns:
      A list of all 'pre' operations performed on this Matrix.
    • getPostOperations

      public abstract List<String> getPostOperations()
      A list of all 'post' operations performed on this Matrix. The last operation performed will be last in the list.
      Returns:
      A list of all 'post' operations performed on this Matrix.
    • getSetOperations

      public abstract Map<String,String> getSetOperations()
      A map of all 'set' operations performed on this Matrix.
      Returns:
      A map of all 'set' operations performed on this Matrix.
    • getDescription

      public abstract String getDescription()