From 835256964f3fa64587a0e05b859d012d125be308 Mon Sep 17 00:00:00 2001 From: Andreas Fitzek Date: Thu, 20 Feb 2014 10:54:04 +0100 Subject: Documentation update --- .../wag/egov/egiz/pdf/PositioningInstruction.html | 514 +++++++++++++++++++++ 1 file changed, 514 insertions(+) create mode 100644 docs/full/at/knowcenter/wag/egov/egiz/pdf/PositioningInstruction.html (limited to 'docs/full/at/knowcenter/wag/egov/egiz/pdf/PositioningInstruction.html') diff --git a/docs/full/at/knowcenter/wag/egov/egiz/pdf/PositioningInstruction.html b/docs/full/at/knowcenter/wag/egov/egiz/pdf/PositioningInstruction.html new file mode 100644 index 00000000..a93b844d --- /dev/null +++ b/docs/full/at/knowcenter/wag/egov/egiz/pdf/PositioningInstruction.html @@ -0,0 +1,514 @@ + + + + + +PositioningInstruction + + + + + + + +
+ + + + + +
+ + + +
+
at.knowcenter.wag.egov.egiz.pdf
+

Class PositioningInstruction

+
+
+ +
+
    +
  • +
    +
    +
    public class PositioningInstruction
    +extends java.lang.Object
    +
    The positioning instruction holds information of where to place the signature + block. + +

    + This instruction is given to the PDF writer in order to place the signature. +

    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Field Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Fields 
      Modifier and TypeField and Description
      protected booleanmake_new_page +
      Tells, if a new plain page should be appended.
      +
      protected intpage +
      The number of the page on which the signature block is to be placed.
      +
      protected floatrotation +
      The rotation of the signature block
      +
      protected floatx +
      The x coordinate where the upper left corner of the signature block should + be placed.
      +
      protected floaty +
      The y coordinate where the upper left corner of the signature block should + be placed.
      +
      +
    • +
    + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      PositioningInstruction(boolean make_new_page, + int page, + float x, + float y, + float rotation) 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      booleanequals(java.lang.Object obj) 
      intgetPage() +
      Returns the page on which the signature is to be printed.
      +
      floatgetRotation() 
      floatgetX() +
      Returns the x coordinate where the upper left corner of the signature block + should be placed.
      +
      floatgetY() +
      Returns the y coordinate where the upper left corner of the signature block + should be placed.
      +
      inthashCode() 
      booleanisMakeNewPage() +
      Tells, if a new plain page should be appended to the document.
      +
      java.lang.StringtoString() 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Field Detail

      + + + +
        +
      • +

        make_new_page

        +
        protected boolean make_new_page
        +
        Tells, if a new plain page should be appended. + +

        + This command is executed before the signature block is positioned according + to page, x and y. +

        +
      • +
      + + + +
        +
      • +

        page

        +
        protected int page
        +
        The number of the page on which the signature block is to be placed. If + specified to make a new page, the number of this newly created page can be + used here as well.
        +
      • +
      + + + +
        +
      • +

        x

        +
        protected float x
        +
        The x coordinate where the upper left corner of the signature block should + be placed.
        +
      • +
      + + + +
        +
      • +

        y

        +
        protected float y
        +
        The y coordinate where the upper left corner of the signature block should + be placed.
        +
      • +
      + + + +
        +
      • +

        rotation

        +
        protected float rotation
        +
        The rotation of the signature block
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        PositioningInstruction

        +
        public PositioningInstruction(boolean make_new_page,
        +                      int page,
        +                      float x,
        +                      float y,
        +                      float rotation)
        +
        Parameters:
        make_new_page - Tells, if a new plain page should be appended. This command is + executed before the signature block is positioned according to + page, x and y.
        page - The number of the page on which the signature block is to be + placed. If specified to make a new page, the number of this newly + created page can be used here as well.
        x - The x coordinate where the upper left corner of the signature + block should be placed.
        y - The y coordinate where the upper left corner of the signature + block should be placed.
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        isMakeNewPage

        +
        public boolean isMakeNewPage()
        +
        Tells, if a new plain page should be appended to the document.
        +
        Returns:
        Returns true, if a new plain page should be appended.
        +
      • +
      + + + +
        +
      • +

        getPage

        +
        public int getPage()
        +
        Returns the page on which the signature is to be printed.
        +
        Returns:
        Returns the page on which the signature is to be printed.
        +
      • +
      + + + +
        +
      • +

        getX

        +
        public float getX()
        +
        Returns the x coordinate where the upper left corner of the signature block + should be placed.
        +
        Returns:
        Returns the x coordinate where the upper left corner of the + signature block should be placed.
        +
      • +
      + + + +
        +
      • +

        getY

        +
        public float getY()
        +
        Returns the y coordinate where the upper left corner of the signature block + should be placed.
        +
        Returns:
        Returns the y coordinate where the upper left corner of the + signature block should be placed.
        +
      • +
      + + + +
        +
      • +

        getRotation

        +
        public float getRotation()
        +
      • +
      + + + +
        +
      • +

        hashCode

        +
        public int hashCode()
        +
        +
        Overrides:
        +
        hashCode in class java.lang.Object
        +
        +
      • +
      + + + +
        +
      • +

        equals

        +
        public boolean equals(java.lang.Object obj)
        +
        +
        Overrides:
        +
        equals in class java.lang.Object
        +
        +
      • +
      + + + +
        +
      • +

        toString

        +
        public java.lang.String toString()
        +
        +
        Overrides:
        +
        toString in class java.lang.Object
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + -- cgit v1.2.3