~ubuntu-branches/ubuntu/trusty/libitext-java/trusty

« back to all changes in this revision

Viewing changes to core/com/lowagie/text/pdf/PdfObject.java

  • Committer: Bazaar Package Importer
  • Author(s): Michael Koch
  • Date: 2009-10-02 21:23:15 UTC
  • mfrom: (5.1.4 sid)
  • Revision ID: james.westby@ubuntu.com-20091002212315-br9lwonsyo2jgycx
* New upstream release (Closes: #549347).
* Build-Depends on libbctsp-java.
* Build-Depends on debhelper (>= 7).
* Added missing Depends on ${misc:Depends}.
* Added Vcs-Svn and Vcs-Browser fields.
* Updated Standards-Version 3.8.3.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 * $Id: PdfObject.java 3760 2009-03-06 16:07:16Z blowagie $
 
2
 * $Id: PdfObject.java 3912 2009-04-26 08:38:15Z blowagie $
3
3
 *
4
4
 * Copyright 1999, 2000, 2001, 2002 Bruno Lowagie
5
5
 *
122
122
    protected int type;
123
123
 
124
124
    /** Holds the indirect reference. */
125
 
    protected PdfIndirectReference indRef;
 
125
    protected PRIndirectReference indRef;
126
126
 
127
127
    // CONSTRUCTORS
128
128
 
384
384
     * 
385
385
     * @return A <CODE>PdfIndirectReference</CODE>
386
386
     */
387
 
    public PdfIndirectReference getIndRef() {
 
387
    public PRIndirectReference getIndRef() {
388
388
        return indRef;
389
389
    }
390
390
 
393
393
     * 
394
394
     * @param indRef New value as a <CODE>PdfIndirectReference</CODE>
395
395
     */
396
 
    public void setIndRef(PdfIndirectReference indRef) {
 
396
    public void setIndRef(PRIndirectReference indRef) {
397
397
        this.indRef = indRef;
398
 
        indRef.setDirectObject(this);
399
 
    }
400
 
 
401
 
    /**
402
 
     * Simply here to be overridden by indirect references.
403
 
     * 
404
 
     * @return this
405
 
     * @since 2.1.5
406
 
     */
407
 
    public PdfObject getDirectObject() {
408
 
        return this;
409
398
    }
410
399
}