Exemplo n.º 1
0
  public static Insets flipInsets(Component c, Insets i) {
    if (c instanceof ShapedPanel) {
      if (((ShapedPanel) c).isHorizontalFlip()) i = InsetsUtil.flipHorizontal(i);
      if (((ShapedPanel) c).isVerticalFlip()) i = InsetsUtil.flipVertical(i);
    }

    return i;
  }