88 lines
2.7 KiB
Java
88 lines
2.7 KiB
Java
|
/**
|
||
|
* Annotation.java
|
||
|
*
|
||
|
Copyright (c) 2018, Innovatics Inc.
|
||
|
All rights reserved.
|
||
|
|
||
|
Redistribution and use in source and binary forms, with or without modification,
|
||
|
are permitted provided that the following conditions are met:
|
||
|
|
||
|
* Redistributions of source code must retain the above copyright notice,
|
||
|
this list of conditions and the following disclaimer.
|
||
|
|
||
|
* Redistributions in binary form must reproduce the above copyright notice,
|
||
|
this list of conditions and the following disclaimer in the documentation
|
||
|
and / or other materials provided with the distribution.
|
||
|
|
||
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||
|
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||
|
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||
|
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
|
||
|
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
||
|
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||
|
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
||
|
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
||
|
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
||
|
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||
|
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||
|
*/
|
||
|
|
||
|
package com.pdfjet;
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Used to create PDF annotation objects.
|
||
|
*
|
||
|
*
|
||
|
*/
|
||
|
class Annotation {
|
||
|
|
||
|
protected int objNumber;
|
||
|
protected String uri;
|
||
|
protected String key;
|
||
|
protected float x1;
|
||
|
protected float y1;
|
||
|
protected float x2;
|
||
|
protected float y2;
|
||
|
|
||
|
protected String language = null;
|
||
|
protected String altDescription = null;
|
||
|
protected String actualText = null;
|
||
|
|
||
|
protected FileAttachment fileAttachment = null;
|
||
|
|
||
|
|
||
|
/**
|
||
|
* This class is used to create annotation objects.
|
||
|
*
|
||
|
* @param uri the URI string.
|
||
|
* @param key the destination name.
|
||
|
* @param x1 the x coordinate of the top left corner.
|
||
|
* @param y1 the y coordinate of the top left corner.
|
||
|
* @param x2 the x coordinate of the bottom right corner.
|
||
|
* @param y2 the y coordinate of the bottom right corner.
|
||
|
*
|
||
|
*/
|
||
|
protected Annotation(
|
||
|
String uri,
|
||
|
String key,
|
||
|
float x1,
|
||
|
float y1,
|
||
|
float x2,
|
||
|
float y2,
|
||
|
String language,
|
||
|
String altDescription,
|
||
|
String actualText) {
|
||
|
this.uri = uri;
|
||
|
this.key = key;
|
||
|
this.x1 = x1;
|
||
|
this.y1 = y1;
|
||
|
this.x2 = x2;
|
||
|
this.y2 = y2;
|
||
|
this.language = language;
|
||
|
this.altDescription = (altDescription == null) ? uri : altDescription;
|
||
|
this.actualText = (actualText == null) ? uri : actualText;
|
||
|
}
|
||
|
|
||
|
}
|