blob: 02e986dfd414aa1a84d9091156951b40ff5c4f15 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
/*
* $Id$
* Copyright (C) 2001-2003 The Apache Software Foundation. All rights reserved.
* For details on use and redistribution please refer to the
* LICENSE file included with these sources.
*/
package org.apache.fop.pdf;
/**
* class representing a /FileSpec object.
*
*/
public class PDFFileSpec extends PDFObject {
/**
* the filename
*/
protected String filename;
/**
* create a /FileSpec object.
*
* @param number the object's number
* @param filename the filename represented by this object
*/
public PDFFileSpec(int number, String filename) {
/* generic creation of object */
super(number);
this.filename = filename;
}
/**
* represent the object in PDF
*
* @return the PDF string
*/
public byte[] toPDF() {
String p = new String(this.number + " " + this.generation
+ " obj\n<<\n/Type /FileSpec\n" + "/F ("
+ this.filename + ")\n" + ">>\nendobj\n");
return p.getBytes();
}
/*
* example
* 29 0 obj
* <<
* /Type /FileSpec
* /F (table1.pdf)
* >>
* endobj
*/
/**
* Check if this equals another object.
*
* @param obj the object to compare
* @return true if this equals other object
*/
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || !(obj instanceof PDFFileSpec)) {
return false;
}
PDFFileSpec spec = (PDFFileSpec)obj;
if (!spec.filename.equals(filename)) {
return false;
}
return true;
}
}
|