android/src/main/java/com/facebook/flipper/plugins/inspector/descriptors/FragmentDescriptor.java [101:133]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  @Override
  public void setHighlighted(Fragment node, boolean selected, boolean isAlignmentMode)
      throws Exception {
    if (node.getView() == null) {
      return;
    }

    final NodeDescriptor descriptor = descriptorForClass(View.class);
    descriptor.setHighlighted(node.getView(), selected, isAlignmentMode);
  }

  @Override
  public Bitmap getSnapshot(Fragment node, boolean includeChildren) throws Exception {
    if (node.getView() == null) {
      return null;
    }

    final NodeDescriptor descriptor = descriptorForClass(View.class);
    return descriptor.getSnapshot(node.getView(), includeChildren);
  }

  @Override
  public void hitTest(Fragment node, Touch touch) {
    touch.continueWithOffset(0, 0, 0);
  }

  @Override
  public @Nullable String getDecoration(Fragment obj) {
    return null;
  }

  @Override
  public boolean matches(String query, Fragment node) throws Exception {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



android/src/main/java/com/facebook/flipper/plugins/inspector/descriptors/SupportFragmentDescriptor.java [91:123]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  @Override
  public void setHighlighted(Fragment node, boolean selected, boolean isAlignmentMode)
      throws Exception {
    if (node.getView() == null) {
      return;
    }

    final NodeDescriptor descriptor = descriptorForClass(View.class);
    descriptor.setHighlighted(node.getView(), selected, isAlignmentMode);
  }

  @Override
  public Bitmap getSnapshot(Fragment node, boolean includeChildren) throws Exception {
    if (node.getView() == null) {
      return null;
    }

    final NodeDescriptor descriptor = descriptorForClass(View.class);
    return descriptor.getSnapshot(node.getView(), includeChildren);
  }

  @Override
  public void hitTest(Fragment node, Touch touch) {
    touch.continueWithOffset(0, 0, 0);
  }

  @Override
  public @Nullable String getDecoration(Fragment obj) {
    return null;
  }

  @Override
  public boolean matches(String query, Fragment node) throws Exception {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



