Class RectangleAnnotation

All Implemented Interfaces:
PermissionsProvider<Annotation>, PropertiesProvider, com.levigo.jadice.web.shared.model.annotation.internal.JwtAnnotation, Serializable, org.jadice.util.base.MementoOriginator
Direct Known Subclasses:
ChecklistAnnotation, EllipseAnnotation, JWTImageAnnotation, TextAnnotation

public class RectangleAnnotation extends ShapeBasedAnnotation
An annotation looking like an rectangle.

An rectangle annotation could be used to surround something interesting part of the displayed document page. For this purpose it can be resized and change its appearance color.

See Also:
  • Field Details

  • Constructor Details

    • RectangleAnnotation

      public RectangleAnnotation()
  • Method Details

    • update

      public void update()
      Specified by:
      update in class ShapeBasedAnnotation
    • setSize

      public void setSize(double width, double height)
      Description copied from class: Annotation
      Set the size of the annotation to the given size. Depending on the type of annotation, this may not be possible. E.g. stamp annotations handle the sizing on their own, so they will refuse to resize themselves. An IllegalArgumentExceptionis thrown in this case. Caveat: it is currently necessary, to force a repaint on the viewer in order to make the results of the modification visible. Moreover there are no modification events fired on the page and document. This will change in the future.
      Specified by:
      setSize in class Annotation
      Parameters:
      width -
      height -
    • setLocation

      public void setLocation(double x, double y)
      Description copied from class: ShapeBasedAnnotation
      Set the location (upper-left corner) of the annotation to the given point. Caveat: it is currently necessary, to force a repaint on the viewer in order to make the results of the modification visible. Moreover there are no modification events fired on the page and document. This will change in the future.
      Overrides:
      setLocation in class ShapeBasedAnnotation
      Parameters:
      x - X-position
      y - Y-position
    • copy

      public RectangleAnnotation copy()
    • copyAttributesTo

      protected void copyAttributesTo(Annotation annotation)
      Overrides:
      copyAttributesTo in class ShapeBasedAnnotation
    • translate

      public void translate(double dx, double dy)
      Description copied from class: Annotation
      Translates this Annotation the indicated distance, to the right along the x coordinate axis, and downward along the y coordinate axis.
      Specified by:
      translate in class Annotation
      Parameters:
      dx - the distance to move this Rectangle along the x axis
      dy - the distance to move this Rectangle along the y axis
    • getShape

      public RectangularShape getShape()
      Description copied from class: ShapeBasedAnnotation
      Shape for render structure
      Specified by:
      getShape in class ShapeBasedAnnotation
      Returns:
      Shape
    • getBounds

      public Rectangle2D getBounds()
      Description copied from class: ShapeBasedAnnotation
      Returns an integer Rectanglethat completely encloses the annotation.
      Specified by:
      getBounds in class ShapeBasedAnnotation
      Returns:
      Rectangle annotation bounding box
    • setRectangle

      public void setRectangle(Rectangle2D rectangle)
      Set new rectangle object. No AnnotationPageSegmentEvent will be triggered.
      Parameters:
      rectangle - object
    • getRectangle

      public Rectangle2D getRectangle()